Skip to content

Commit 9cd5b46

Browse files
committed
strip quotes from the log file name
1 parent e9086d1 commit 9cd5b46

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/server/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ namespace ts.server {
190190
if (option && value) {
191191
switch (option) {
192192
case "-file":
193-
logEnv.file = value;
193+
logEnv.file = stripQuotes(value);
194194
break;
195195
case "-level":
196196
const level: LogLevel = (<any>LogLevel)[value];

0 commit comments

Comments
 (0)