Skip to content

Commit d0ef239

Browse files
authored
Update processes.ts
Grammar fix.
1 parent 285107a commit d0ef239

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/base/node/processes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export abstract class AbstractProcess<TProgressData> {
153153

154154
public start(): PPromise<SuccessData, TProgressData> {
155155
if (Platform.isWindows && ((this.options && this.options.cwd && TPath.isUNC(this.options.cwd)) || !this.options && !this.options.cwd && TPath.isUNC(process.cwd()))) {
156-
return TPromise.wrapError(new Error(nls.localize('TaskRunner.UNC', 'Can\'t execute a shell command on an UNC drive.')));
156+
return TPromise.wrapError(new Error(nls.localize('TaskRunner.UNC', 'Can\'t execute a shell command on a UNC drive.')));
157157
}
158158
return this.useExec().then((useExec) => {
159159
let cc: TValueCallback<SuccessData>;

0 commit comments

Comments
 (0)