Skip to content

Commit

Permalink
Removed out: prefix in file printing
Browse files Browse the repository at this point in the history
  • Loading branch information
firecow committed Apr 15, 2020
1 parent 5e1829c commit cfdb709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/job.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export class Job {
if (stripped !== "") {
for (const line of stripped.split(/\r?\n/)) {
if (line !== "") {
fs.appendFileSync(outputFilesPath, `out: ${line}\n`);
fs.appendFileSync(outputFilesPath, `${line}\n`);
process.stdout.write(`${jobNameStr} ${c.greenBright(">")} ${line}\n`);
}
}
Expand Down

0 comments on commit cfdb709

Please sign in to comment.