Skip to content

Commit

Permalink
support "@types/archiver" v3 ("finalize" call returns Promise)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimiry committed May 22, 2019
1 parent 211a130 commit da780bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dist-packages/upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ outputArchiver.pipe(outputStream);
LOG(LOG_LEVELS.title(`Adding ${LOG_LEVELS.value(file)} to ${LOG_LEVELS.value(outputFile)} archive`));
}

outputArchiver.finalize();
await outputArchiver.finalize();
})().catch((error) => {
LOG(error);
process.exit(1);
Expand Down

0 comments on commit da780bc

Please sign in to comment.