We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c230d47 commit 6ba019bCopy full SHA for 6ba019b
1 file changed
action.js
@@ -139,7 +139,7 @@ async function install_pkgx() {
139
fs.appendFileSync(process.env["GITHUB_ENV"], `PKGX_DIR=${process.env.INPUT_PKGX_DIR}\n`);
140
}
141
142
- if (os.platform() != 'darwin') {
+ if (os.platform() == 'linux') {
143
console.log(`::group::installing pre-requisites`);
144
const installer_script_path = path.join(path.dirname(__filename), "installer.sh");
145
execSync(installer_script_path, {env: {PKGX_INSTALL_PREREQS: '1', ...process.env}});
0 commit comments