Procházet zdrojové kódy

Fixes switch branch command error handling

main
Eric Amodio před 5 roky
rodič
revize
ee55a0bfdd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/commands/git/branch.ts

+ 1
- 1
src/commands/git/branch.ts Zobrazit soubor

@ -379,7 +379,7 @@ export class BranchGitCommand extends QuickCommandBase {
}
if (state.flags.includes('--switch')) {
void state.repo.switch(state.reference.ref, { createBranch: state.name });
void (await state.repo.switch(state.reference.ref, { createBranch: state.name }));
} else {
void state.repo.branch(...state.flags, state.name, state.reference.ref);
}

Načítá se…
Zrušit
Uložit