Skip to content

Commit bbeea0e

Browse files
authored
fix: Add eol after emit message (#701)
1 parent 929e6aa commit bbeea0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tasks/buildArtifact/BuildArtifactTaskProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class ExportJarTaskTerminal implements Pseudoterminal {
206206

207207
public exit(message?: string) {
208208
if (message) {
209-
this.writeEmitter.fire(message);
209+
this.writeEmitter.fire(message + "\r\n");
210210
}
211211
if (activeTerminalMap.has(this.terminalId)) {
212212
activeTerminalMap.delete(this.terminalId);

0 commit comments

Comments
 (0)