Skip to content

Commit c1ab158

Browse files
committed
Run secureTagRelease() asynchronously
1 parent 692c6b7 commit c1ab158

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: lib/promote_release.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class ReleasePromotion {
238238
return this.config.username;
239239
}
240240

241-
secureTagRelease() {
241+
async secureTagRelease() {
242242
const { version, isLTS, ltsCodename } = this;
243243

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

257-
return runSync(secureTag, secureTagOptions);
257+
await runAsync(secureTag, secureTagOptions);
258258
}
259259

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

0 commit comments

Comments
 (0)