Skip to content

Commit ee179c2

Browse files
authored
fix: Export jar reports have wrong format in macOS (#515)
1 parent 713a0b9 commit ee179c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/exportJarSteps/ExportJarTaskProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import { lstat } from "fs-extra";
55
import * as globby from "globby";
66
import * as _ from "lodash";
7-
import { EOL, platform } from "os";
7+
import { platform } from "os";
88
import { dirname, extname, isAbsolute, join, relative } from "path";
99
import {
1010
CustomExecution, Event, EventEmitter, Pseudoterminal, Task, TaskDefinition,
@@ -429,5 +429,5 @@ export function appendOutput(terminalId: string, message: string): void {
429429
if (!terminal) {
430430
return;
431431
}
432-
terminal.writeEmitter.fire(message + EOL);
432+
terminal.writeEmitter.fire(message + "\r\n");
433433
}

0 commit comments

Comments
 (0)