Skip to content

Commit

Permalink
Run secureTagRelease() asynchronously
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed May 20, 2020
1 parent 692c6b7 commit c1ab158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/promote_release.js
Expand Up @@ -238,7 +238,7 @@ class ReleasePromotion {
return this.config.username;
}

secureTagRelease() {
async secureTagRelease() {
const { version, isLTS, ltsCodename } = this;

const secureTag = path.join(
Expand All @@ -254,7 +254,7 @@ class ReleasePromotion {
`${this.date} Node.js v${version} ${releaseInfo} Release`
];

return runSync(secureTag, secureTagOptions);
await runAsync(secureTag, secureTagOptions);
}

// Set up the branch so that nightly builds are produced with the next
Expand Down

0 comments on commit c1ab158

Please sign in to comment.