diff options
author | Bevan Weiss <bevan.weiss@gmail.com> | 2024-06-25 17:58:54 +1000 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2024-07-04 19:25:49 -0400 |
commit | 89dc7b47809da06a69811788a1a990e216b81a5c (patch) | |
tree | a90d48b6d6819f9ee70c7dfd9c972a4af3cf3ad4 /src/test/sandbox/setup_sandbox.bat | |
parent | 1580bf87f719ddb164f7cb776ff64892f41fc747 (diff) | |
download | wix-89dc7b47809da06a69811788a1a990e216b81a5c.tar.gz wix-89dc7b47809da06a69811788a1a990e216b81a5c.tar.bz2 wix-89dc7b47809da06a69811788a1a990e216b81a5c.zip |
Make faster... don't do both runtime and SDK, SDK is all we need
Fix a couple of copy-paste errors in the "don't have files from
host in Sandbox" path also.
Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
Diffstat (limited to 'src/test/sandbox/setup_sandbox.bat')
-rw-r--r-- | src/test/sandbox/setup_sandbox.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/sandbox/setup_sandbox.bat b/src/test/sandbox/setup_sandbox.bat index a3f0bbfe..c4378f52 100644 --- a/src/test/sandbox/setup_sandbox.bat +++ b/src/test/sandbox/setup_sandbox.bat | |||
@@ -7,9 +7,9 @@ if not exist ARM64 (mkdir ARM64) | |||
7 | REM if not exist VSTest (mkdir VSTest) | 7 | REM if not exist VSTest (mkdir VSTest) |
8 | 8 | ||
9 | @echo on | 9 | @echo on |
10 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-runtime-win-x64.zip --output ".\AMD64\dotnet-runtime.zip" | 10 | REM curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-runtime-win-x64.zip --output ".\AMD64\dotnet-runtime.zip" |
11 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-sdk-win-x64.zip --output ".\AMD64\dotnet-sdk.zip" | 11 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-sdk-win-x64.zip --output ".\AMD64\dotnet-sdk.zip" |
12 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-runtime-win-arm64.zip --output ".\ARM64\dotnet-runtime.zip" | 12 | REM curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-runtime-win-arm64.zip --output ".\ARM64\dotnet-runtime.zip" |
13 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-sdk-win-arm64.zip --output ".\ARM64\dotnet-sdk.zip" | 13 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-sdk-win-arm64.zip --output ".\ARM64\dotnet-sdk.zip" |
14 | @echo off | 14 | @echo off |
15 | 15 | ||