Download from alt location

This commit is contained in:
Daniel A. Wozniak 2024-10-31 13:05:17 -07:00 committed by Daniel Wozniak
parent e8d4f2524a
commit 3e5ada781e

View file

@ -74,11 +74,11 @@ $ARCH = $(. $PYTHON_BIN -c "import platform; print(platform.architectu
if ( $ARCH -eq "64bit" ) {
$ARCH = "AMD64"
$ARCH_X = "x64"
$SALT_DEP_URL = "https://repo.saltproject.io/windows/dependencies/64"
$SALT_DEP_URL = "https://github.com/saltstack/salt-windows-deps/raw/refs/heads/main/64/"
} else {
$ARCH = "x86"
$ARCH_X = "x86"
$SALT_DEP_URL = "https://repo.saltproject.io/windows/dependencies/32"
$SALT_DEP_URL = "https://github.com/saltstack/salt-windows-deps/raw/refs/heads/main/32/"
}
#-------------------------------------------------------------------------------