Skip to content

Commit

Permalink
Merge pull request #14 from dscho/fix-tyop
Browse files Browse the repository at this point in the history
Fix 32-bit MSYSTEM and PATH
  • Loading branch information
dscho authored Feb 23, 2021
2 parents 212620c + f92d83c commit 8e357ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async function run(): Promise<void> {
// Set up PATH so that Git for Windows' SDK's `bash.exe`, `prove` and `gcc` are found
core.addPath(`${outputDirectory}/usr/bin/core_perl`)
core.addPath(`${outputDirectory}/usr/bin`)
const msystem = architecture === 'i686' ? 'MING32' : 'MINGW64'
const msystem = architecture === 'i686' ? 'MINGW32' : 'MINGW64'
core.addPath(`${outputDirectory}/${msystem.toLocaleLowerCase()}/bin`)
core.exportVariable('MSYSTEM', msystem)
} catch (error) {
Expand Down

0 comments on commit 8e357ea

Please sign in to comment.