Skip to content

Commit cfdb709

Browse files
committed
Removed out: prefix in file printing
1 parent 5e1829c commit cfdb709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/job.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export class Job {
227227
if (stripped !== "") {
228228
for (const line of stripped.split(/\r?\n/)) {
229229
if (line !== "") {
230-
fs.appendFileSync(outputFilesPath, `out: ${line}\n`);
230+
fs.appendFileSync(outputFilesPath, `${line}\n`);
231231
process.stdout.write(`${jobNameStr} ${c.greenBright(">")} ${line}\n`);
232232
}
233233
}

0 commit comments

Comments
 (0)