Merge #1014
1014: Don't execute cargo watch when information message is dismissed r=matklad a=pcpthm I think most information messages on `VSCode` have such behavior. Co-authored-by: pcpthm <pcpthm@gmail.com>
This commit is contained in:
commit
ed823cb38d
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue