ソースを参照

Fixes switch branch command error handling

main
Eric Amodio 5年前
コミット
ee55a0bfdd
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/commands/git/branch.ts

+ 1
- 1
src/commands/git/branch.ts ファイルの表示

@ -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);
}

読み込み中…
キャンセル
保存