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 3140c49 commit 73a887fCopy full SHA for 73a887f
src/tasks/run.ts
@@ -33,7 +33,7 @@ function execRun (job: RunJob, executed: (result: RunResult) => void) {
33
34
// Check for compile_stderr if no stdout found
35
let compile_stderr = stdout ? '' : cat(path.join(currentJobDir, 'compile.stderr'))
36
- let stderr = compile_stderr || (path.join(currentJobDir, 'run.stderr')).toString()
+ let stderr = compile_stderr || cat((path.join(currentJobDir, 'run.stderr')).toString())
37
38
executed({
39
id: job.id,
@@ -46,4 +46,4 @@ function execRun (job: RunJob, executed: (result: RunResult) => void) {
46
47
export {
48
execRun
49
-}
+}
0 commit comments