File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -383,22 +383,22 @@ export const branchSequencer: BranchSequencer = async ({
383383 ? boundaries . length === originalBoundariesLength
384384 : boundaries . length === 1 ;
385385
386- /**
387- * https://libgit2.org/libgit2/#HEAD/group/checkout/git_checkout_head
388- */
389- // await Git.Checkout.tree(repo, targetBranch as any); // TODO TS FIXME
390- execSyncInRepo ( `${ gitCmd } checkout ${ targetBranch } ` ) ; // f this
391-
392386 await sequentialResolve (
393- targetBranch . map ( ( x ) => async ( ) =>
387+ targetBranch . map ( ( x ) => async ( ) => {
388+ /**
389+ * https://libgit2.org/libgit2/#HEAD/group/checkout/git_checkout_head
390+ */
391+ // await Git.Checkout.tree(repo, targetBranch as any); // TODO TS FIXME
392+ execSyncInRepo ( `${ gitCmd } checkout ${ x } ` ) ; // f this
393+
394394 await actionInsideEachCheckedOutBranch ( {
395395 repo, //
396396 targetBranch : x ,
397397 targetCommitSHA,
398398 isLatestBranch,
399399 execSyncInRepo,
400- } )
401- )
400+ } ) ;
401+ } )
402402 ) ;
403403
404404 return goNext ( ) ;
You can’t perform that action at this time.
0 commit comments