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 2f6a785 commit 98f4b80Copy full SHA for 98f4b80
src/main.ts
@@ -5,7 +5,7 @@ import { execFile } from 'child_process'
5
try {
6
checkInputs()
7
execFile(path(__dirname, 'entrypoint.sh'))
8
- .stdout?.on('data', data => info(data.toString()))
+ .stdout?.pipe(process.stdout)
9
} catch (err) {
10
console.error(err)
11
setFailed(err instanceof Error ? err.message : err)
0 commit comments