Skip to content

Commit 6ba019b

Browse files
committed
Don’t run pre-reqs step on windows
1 parent c230d47 commit 6ba019b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ async function install_pkgx() {
139139
fs.appendFileSync(process.env["GITHUB_ENV"], `PKGX_DIR=${process.env.INPUT_PKGX_DIR}\n`);
140140
}
141141

142-
if (os.platform() != 'darwin') {
142+
if (os.platform() == 'linux') {
143143
console.log(`::group::installing pre-requisites`);
144144
const installer_script_path = path.join(path.dirname(__filename), "installer.sh");
145145
execSync(installer_script_path, {env: {PKGX_INSTALL_PREREQS: '1', ...process.env}});

0 commit comments

Comments
 (0)