Skip to content

Commit

Permalink
fix: Export jar reports have wrong format in macOS (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
CsCherrYY authored Jun 15, 2021
1 parent 713a0b9 commit ee179c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/exportJarSteps/ExportJarTaskProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { lstat } from "fs-extra";
import * as globby from "globby";
import * as _ from "lodash";
import { EOL, platform } from "os";
import { platform } from "os";
import { dirname, extname, isAbsolute, join, relative } from "path";
import {
CustomExecution, Event, EventEmitter, Pseudoterminal, Task, TaskDefinition,
Expand Down Expand Up @@ -429,5 +429,5 @@ export function appendOutput(terminalId: string, message: string): void {
if (!terminal) {
return;
}
terminal.writeEmitter.fire(message + EOL);
terminal.writeEmitter.fire(message + "\r\n");
}

0 comments on commit ee179c2

Please sign in to comment.