mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 17:43:00 -05:00
Write out Cannot (#198377)
spelling: cannot Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
@@ -558,7 +558,7 @@ export class ChatService extends Disposable implements IChatService {
|
||||
rawResponse = { session: model.session! };
|
||||
|
||||
} else {
|
||||
throw new Error(`Can't handle request`);
|
||||
throw new Error(`Cannot handle request`);
|
||||
}
|
||||
|
||||
if (token.isCancellationRequested) {
|
||||
|
||||
@@ -193,7 +193,7 @@ if (!opts.web) {
|
||||
}
|
||||
|
||||
if (!fs.existsSync(electronPath || '')) {
|
||||
fail(`Can't find VSCode at ${electronPath}. Please run VSCode once first (scripts/code.sh, scripts\\code.bat) and try again.`);
|
||||
fail(`Cannot find VSCode at ${electronPath}. Please run VSCode once first (scripts/code.sh, scripts\\code.bat) and try again.`);
|
||||
}
|
||||
|
||||
quality = parseQuality();
|
||||
@@ -213,7 +213,7 @@ else {
|
||||
|
||||
if (typeof testCodeServerPath === 'string') {
|
||||
if (!fs.existsSync(testCodeServerPath)) {
|
||||
fail(`Can't find Code server at ${testCodeServerPath}.`);
|
||||
fail(`Cannot find Code server at ${testCodeServerPath}.`);
|
||||
} else {
|
||||
logger.log(`Running web smoke tests against ${testCodeServerPath}`);
|
||||
}
|
||||
@@ -326,7 +326,7 @@ async function ensureStableCode(): Promise<void> {
|
||||
}
|
||||
|
||||
if (!fs.existsSync(stableCodePath)) {
|
||||
throw new Error(`Can't find Stable VSCode at ${stableCodePath}.`);
|
||||
throw new Error(`Cannot find Stable VSCode at ${stableCodePath}.`);
|
||||
}
|
||||
|
||||
logger.log(`Using stable build ${stableCodePath} for migration tests`);
|
||||
|
||||
Reference in New Issue
Block a user