Skip to content

Commit 5c83f5d

Browse files
authored
Don't quote task name for build status (#813)
Fixes #694
1 parent d3f536b commit 5c83f5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui/SwiftBuildStatus.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ export class SwiftBuildStatus implements vscode.Disposable {
116116
}
117117
const progress = this.findBuildProgress(line);
118118
if (progress) {
119-
update(`"${name}" [${progress.completed}/${progress.total}]`);
119+
update(`${name} [${progress.completed}/${progress.total}]`);
120120
return false;
121121
}
122122
if (this.checkIfFetching(line)) {
123123
// this.statusItem.update(task, `Fetching dependencies "${task.name}"`);
124-
update(`"${name}" fetching dependencies`);
124+
update(`${name} fetching dependencies`);
125125
return false;
126126
}
127127
}

0 commit comments

Comments
 (0)