From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 11 Dec 2024 15:42:17 +0000 (+0100) Subject: [3.13] CI: Use bash to properly expand variable (GH-127822) (#127824) X-Git-Tag: v3.13.2~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f56da922cb51ec0e4c3242ae1ff145cb1e01d554;p=thirdparty%2FPython%2Fcpython.git [3.13] CI: Use bash to properly expand variable (GH-127822) (#127824) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> --- diff --git a/.github/workflows/reusable-windows-msi.yml b/.github/workflows/reusable-windows-msi.yml index d0d53dba0b45..a1c45d954247 100644 --- a/.github/workflows/reusable-windows-msi.yml +++ b/.github/workflows/reusable-windows-msi.yml @@ -24,4 +24,5 @@ jobs: with: persist-credentials: false - name: Build CPython installer - run: .\Tools\msi\build.bat --doc -"${ARCH}" + run: ./Tools/msi/build.bat --doc -"${ARCH}" + shell: bash