Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Jan 14, 2025
1 parent a6130a7 commit cd04c52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ async function install_pkgx() {
console.log(`running: \`${cmd}\``);
let env = undefined;
if (process.env.INPUT_PKGX_DIR) {
env = {PKGX_DIR: process.env.INPUT_PKGX_DIR};
env = process.env
env['PKGX_DIR'] = process.env.INPUT_PKGX_DIR;
}
const output = execSync(cmd, {env});
parse_pkgx_output(output.toString());
Expand Down

0 comments on commit cd04c52

Please sign in to comment.