Skip to content

Commit 73a887f

Browse files
cat the stderr
1 parent 3140c49 commit 73a887f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tasks/run.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function execRun (job: RunJob, executed: (result: RunResult) => void) {
3333

3434
// Check for compile_stderr if no stdout found
3535
let compile_stderr = stdout ? '' : cat(path.join(currentJobDir, 'compile.stderr'))
36-
let stderr = compile_stderr || (path.join(currentJobDir, 'run.stderr')).toString()
36+
let stderr = compile_stderr || cat((path.join(currentJobDir, 'run.stderr')).toString())
3737

3838
executed({
3939
id: job.id,
@@ -46,4 +46,4 @@ function execRun (job: RunJob, executed: (result: RunResult) => void) {
4646

4747
export {
4848
execRun
49-
}
49+
}

0 commit comments

Comments
 (0)