File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
import fs = require( "fs" ) ;
6
6
import net = require( "net" ) ;
7
- import * as os from "os" ;
8
7
import path = require( "path" ) ;
9
8
import * as semver from "semver" ;
10
9
import vscode = require( "vscode" ) ;
@@ -196,7 +195,9 @@ export class SessionManager implements Middleware {
196
195
if ( this . sessionSettings . integratedConsole . suppressStartupBanner ) {
197
196
this . editorServicesArgs += "-StartupBanner '' " ;
198
197
} else {
199
- const startupBanner = `=====> ${ this . HostName } Integrated Console v${ this . HostVersion } <=====${ os . EOL } ` ;
198
+ const startupBanner = `
199
+ =====> ${ this . HostName } Integrated Console v${ this . HostVersion } <=====
200
+ ` ;
200
201
this . editorServicesArgs += `-StartupBanner "${ startupBanner } " ` ;
201
202
}
202
203
You can’t perform that action at this time.
0 commit comments