chore: adding bluebird promise to release script (#9047)

This commit is contained in:
Jessica Sachs
2020-10-30 13:24:11 -04:00
committed by GitHub
parent 462829bea1
commit 2a642b2272

View File

@@ -148,7 +148,7 @@ const waitOnTests = async (names, packageInfo) => {
console.log(`\nWaiting on the following CI jobs: ${jobs.join(', ')}`)
return Promise.all(jobs.map((job) => {
return Promise.resolve(waitForJobToPass(job))
return waitForJobToPass(job)
.timeout(minutes(60))
.then(() => {
console.log(`${job} passed`)