Skip to content

Commit

Permalink
Restore stdio
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianrath committed Jul 1, 2024
1 parent fa082f2 commit 341fe50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37039,7 +37039,7 @@ function executeRunner(runnerPath, graphFile, inputs, matrix, secrets) {
fs_1.default.writeFileSync(graphFile, buf.toString("utf-8"));
const customEnv = Object.assign(Object.assign({}, process.env), { ACT_GRAPH_FILE: graphFile, GRAPH_FILE: graphFile, INPUT_MATRIX: matrix, INPUT_INPUTS: inputs, INPUT_SECRETS: secrets });
console.log(`🟢 Running graph-runner`, graphFile);
child_process_1.default.execSync(runnerPath, { stdio: ['inherit', 'pipe', 'pipe'], env: customEnv });
child_process_1.default.execSync(runnerPath, { stdio: "inherit", env: customEnv });
});
}
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ async function executeRunner(
INPUT_SECRETS: secrets,
};
console.log(`🟢 Running graph-runner`, graphFile);
cp.execSync(runnerPath, { stdio: ['inherit', 'pipe', 'pipe'], env: customEnv });
cp.execSync(runnerPath, { stdio: "inherit", env: customEnv });
}

/**
Expand Down

0 comments on commit 341fe50

Please sign in to comment.