Skip to content

Commit 98f4b80

Browse files
committed
Try with .pipe
1 parent 2f6a785 commit 98f4b80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { execFile } from 'child_process'
55
try {
66
checkInputs()
77
execFile(path(__dirname, 'entrypoint.sh'))
8-
.stdout?.on('data', data => info(data.toString()))
8+
.stdout?.pipe(process.stdout)
99
} catch (err) {
1010
console.error(err)
1111
setFailed(err instanceof Error ? err.message : err)

0 commit comments

Comments
 (0)