Skip to content

Commit

Permalink
Fix HOST_ARCH substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
strseb committed Feb 3, 2025
1 parent 88fcbdb commit 01bc8c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions taskcluster/scripts/toolchain/enter_dev_shell.ps1.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ $W10_SDK_PATH = resolve-path "$PSScriptRoot\Windows Kits\10"
$W10_SDK_VERSION = "10.0.19041.0"
$MSVC_VERSION = "14.42.34433"

$ARCH = *TARGET_ARCH
$HOST_ARCH = *HOST_ARCH
$ARCH = "*TARGET_ARCH"
$HOST_ARCH = "*HOST_ARCH"

$missingPaths = @()

Expand Down
2 changes: 1 addition & 1 deletion taskcluster/scripts/toolchain/msvc_download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ sed -e 's/*TARGET_ARCH/arm64/g' -e 's/*HOST_ARCH/arm64/g' \
$VCS_PATH/taskcluster/scripts/toolchain/enter_dev_shell.ps1.in > msvc/enter_dev_shell.ps1
echo "Patched enter_dev_shell"
echo "Starting Compression"
tar --checkpoint-action=echo="#%u: %T" -cJf $UPLOAD_DIR/msvc.tar.xz msvc/
tar -cJf $UPLOAD_DIR/msvc.tar.xz msvc/
echo "Done Compression"

0 comments on commit 01bc8c3

Please sign in to comment.