File tree 1 file changed +9
-9
lines changed 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 ({
383
383
? boundaries . length === originalBoundariesLength
384
384
: boundaries . length === 1 ;
385
385
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
-
392
386
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
+
394
394
await actionInsideEachCheckedOutBranch ( {
395
395
repo, //
396
396
targetBranch : x ,
397
397
targetCommitSHA,
398
398
isLatestBranch,
399
399
execSyncInRepo,
400
- } )
401
- )
400
+ } ) ;
401
+ } )
402
402
) ;
403
403
404
404
return goNext ( ) ;
You can’t perform that action at this time.
0 commit comments