Skip to content

Commit

Permalink
Add await keyword (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
horihiro authored Jun 29, 2020
1 parent e45448a commit 96ea592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion denofunc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if (args.length === 1 && args[0] === "init") {
await runFunc("start");
} else if (args.length === 2 && args[0] === "publish") {
const platform = await getAppPlatform(args[1]);
updateHostJson(platform);
await updateHostJson(platform);
await downloadBinary(platform);
await generateFunctions();
await createJSBundle();
Expand Down

0 comments on commit 96ea592

Please sign in to comment.