20 lines
419 B
Bash
Executable File
20 lines
419 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2016-2018 The Brenwill Workshop Ltd.
|
|
#
|
|
# getLatestAll - Updates to the latest versions of all submodules.
|
|
#
|
|
# Invokes the following scripts:
|
|
# getLatestVulkanSpec
|
|
# getLatestSPIRVTools
|
|
# getLatestglslang
|
|
# getLatestSPIRVCross
|
|
#
|
|
# macOS usage: ./getLatestAll
|
|
|
|
./getLatestVulkanSpec
|
|
./getLatestSPIRVTools
|
|
./getLatestglslang
|
|
./getLatestSPIRVCross
|
|
./getLatestVulkanLVL
|