Skip to content

Commit f09572c

Browse files
authored
Fix quoting of banner for global tool (#2788)
1 parent 11ab313 commit f09572c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export class SessionManager implements Middleware {
196196
} else {
197197
const startupBanner = `=====> ${this.HostName} Integrated Console v${this.HostVersion} <=====
198198
`;
199-
this.editorServicesArgs += `-StartupBanner "${startupBanner}" `;
199+
this.editorServicesArgs += `-StartupBanner '${startupBanner}' `;
200200
}
201201

202202
if (this.sessionSettings.developer.editorServicesWaitForDebugger) {

0 commit comments

Comments
 (0)