Skip to content

Commit 7b42061

Browse files
committed
Fix 32-bit MSYSTEM value
Whoops... This also set the `PATH` incorrectly... Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 212620c commit 7b42061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async function run(): Promise<void> {
5959
// Set up PATH so that Git for Windows' SDK's `bash.exe`, `prove` and `gcc` are found
6060
core.addPath(`${outputDirectory}/usr/bin/core_perl`)
6161
core.addPath(`${outputDirectory}/usr/bin`)
62-
const msystem = architecture === 'i686' ? 'MING32' : 'MINGW64'
62+
const msystem = architecture === 'i686' ? 'MINGW32' : 'MINGW64'
6363
core.addPath(`${outputDirectory}/${msystem.toLocaleLowerCase()}/bin`)
6464
core.exportVariable('MSYSTEM', msystem)
6565
} catch (error) {

0 commit comments

Comments
 (0)