Skip to content

Commit

Permalink
add async/await back
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel committed Jun 29, 2021
1 parent 958c560 commit 1a45177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build_cdn.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async function installLanguages(languages, options) {

await Promise.all(
languages.filter((l) => l.third_party)
.map((lang) => buildDistributable(lang, options))
.map(async(lang) => await buildDistributable(lang, options))
);

log("");
Expand Down

0 comments on commit 1a45177

Please sign in to comment.