diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts index 420635f41f..4187ef4d15 100644 --- a/editors/code/src/commands/runnables.ts +++ b/editors/code/src/commands/runnables.ts @@ -163,7 +163,7 @@ export async function interactivelyStartCargoWatch() { 'yes', 'no' ); - if (watch === 'no') { + if (watch !== 'yes') { return; } } @@ -180,7 +180,7 @@ export async function interactivelyStartCargoWatch() { 'yes', 'no' ); - if (install === 'no') { + if (install !== 'yes') { return; }