File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
build/azure-pipelines/common Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ async function main() {
183
183
else {
184
184
console . log ( 'Uploading blobs to Azure storage...' ) ;
185
185
}
186
- await uploadPromises ;
186
+ await Promise . all ( uploadPromises ) ;
187
187
console . log ( 'All blobs successfully uploaded.' ) ;
188
188
const assetUrl = `${ process . env [ 'AZURE_CDN_URL' ] } /${ quality } /${ blobName } ` ;
189
189
const blobPath = new URL ( assetUrl ) . pathname ;
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ async function main(): Promise<void> {
220
220
console . log ( 'Uploading blobs to Azure storage...' ) ;
221
221
}
222
222
223
- await uploadPromises ;
223
+ await Promise . all ( uploadPromises ) ;
224
224
console . log ( 'All blobs successfully uploaded.' ) ;
225
225
226
226
const assetUrl = `${ process . env [ 'AZURE_CDN_URL' ] } /${ quality } /${ blobName } ` ;
You can’t perform that action at this time.
0 commit comments