Skip to content

Commit 1104f09

Browse files
committed
fix type
1 parent 4bd64c9 commit 1104f09

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/promote_release.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,11 +391,12 @@ export default class ReleasePromotion extends Session {
391391

392392
const releaseBranch = `v${versionComponents.major}.x`;
393393

394+
// TODO: find a solution for key passphrase from the terminal
394395
return Promise.all([
395396
forceRunAsync('git', ['push', this.upstream, `HEAD:refs/heads/${releaseBranch}`],
396397
{ ignoreFailure: false }),
397-
forceRunAsync('git', ['push', this.upstream, `HEAD:refs/heads/${stagingBranch}`,
398-
{ ignoreFailure: false }])
398+
forceRunAsync('git', ['push', this.upstream, `HEAD:refs/heads/${stagingBranch}`],
399+
{ ignoreFailure: false })
399400
]);
400401
}
401402

0 commit comments

Comments
 (0)