From aef3b23061241d49870400567ebb8acaddebe655 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 3 Mar 2026 14:04:27 -0500 Subject: [PATCH] fix quoting on $f --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d2ba5c7..046c7a03 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -758,10 +758,10 @@ jobs: echo "GAM Archive ${GAM_ARCHIVE}" tar -C "${gampath}/.." --create --verbose --exclude-from "${GITHUB_WORKSPACE}/.github/actions/package_exclusions.txt" --file $GAM_ARCHIVE --xz gam7 - - name: Install Wix on Win ARM64 - if: runner.os == 'Windows' && runner.arch == 'ARM64' - run: | - choco install wixtoolset + # - name: Install Wix on Win ARM64 + # if: runner.os == 'Windows' && runner.arch == 'ARM64' + # run: | + # choco install wixtoolset - name: Windows package zip if: runner.os == 'Windows' && matrix.goal != 'test' @@ -776,7 +776,7 @@ jobs: if: runner.os == 'Windows' && matrix.goal != 'test' run: | choco install innosetup - iscc /S"gamsigntool='C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\signtool.exe' verify /pa /v $f" gam.iss + iscc /S"gamsigntool='C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\signtool.exe' verify /pa /v \"\$f\"" gam.iss #- name: Windows package MSI # if: runner.os == 'Windows' && matrix.goal != 'test'