We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Promise.all
1 parent 1726d24 commit 37e1bdbCopy full SHA for 37e1bdb
web/packages/extension/tools/sign_xpi.js
@@ -75,7 +75,7 @@ As this is indeed a complicated build process, please let me know if there is an
75
});
76
77
try {
78
- await Promise.all(sourceCodeUpload, notesUpload);
+ await Promise.all([sourceCodeUpload, notesUpload]);
79
console.log("Successfully uploaded source code and approval notes");
80
} catch (e) {
81
console.error(`Got exception when uploading submission data: ${e}`);
0 commit comments