We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91955ff commit ef2c302Copy full SHA for ef2c302
scripts/setup.ps1
@@ -36,7 +36,7 @@ function Get-Files {
36
37
function Update-Submodule {
38
param ([string] $Submodule)
39
- git submodule update --init --recursive $Vendor_Dir/$Submodule
+ git submodule update --init --recursive --depth 1 $Vendor_Dir/$Submodule
40
}
41
42
function Checkout-Tags {
scripts/setup.sh
@@ -37,7 +37,7 @@ VULKAN_INCLUDE_DIR="${VULKAN_VENDOR_DIR}/include/vulkan"
VOLK_INCLUDE_DIR="${VULKAN_VENDOR_DIR}/include/volk"
update_submodules() {
- git submodule update --init --recursive "${VENDOR_DIR}"/"$1"
+ git submodule update --init --recursive --depth 1 "${VENDOR_DIR}"/"$1"
43
checkout_tags() {
0 commit comments