We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d475f commit 7f1289bCopy full SHA for 7f1289b
src/main.ts
@@ -4,8 +4,9 @@ import { execFile } from 'child_process'
4
5
try {
6
checkInputs()
7
- execFile(path(__dirname, 'entrypoint.sh'))
8
- .stdout?.pipe(process.stdout)
+ const child = execFile(path(__dirname, 'entrypoint.sh'))
+ child.stdout?.pipe(process.stdout)
9
+ child.stderr?.pipe(process.stderr)
10
} catch (err) {
11
console.error(err)
12
setFailed(err instanceof Error ? err.message : err)
0 commit comments