Skip to content

Commit 8e357ea

Browse files
authored
Merge pull request #14 from dscho/fix-tyop
Fix 32-bit MSYSTEM and PATH
2 parents 212620c + f92d83c commit 8e357ea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main.ts

+1-1
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)