Skip to content

Commit 37e1bdb

Browse files
committed
chore: Promise.all needs an array
1 parent 1726d24 commit 37e1bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/packages/extension/tools/sign_xpi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ As this is indeed a complicated build process, please let me know if there is an
7575
});
7676

7777
try {
78-
await Promise.all(sourceCodeUpload, notesUpload);
78+
await Promise.all([sourceCodeUpload, notesUpload]);
7979
console.log("Successfully uploaded source code and approval notes");
8080
} catch (e) {
8181
console.error(`Got exception when uploading submission data: ${e}`);

0 commit comments

Comments
 (0)