12 lines
283 B
Bash
Executable File
12 lines
283 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2016-2018 The Brenwill Workshop Ltd.
|
|
#
|
|
# getLatestVulkanSamples - Updates to the latest version of VulkanSamples submodule.
|
|
#
|
|
# macOS usage: ./getLatestVulkanSamples
|
|
|
|
rm -rf VulkanSamples
|
|
git clone https://github.com/brenwill/VulkanSamples.git
|
|
|