From 96ea5924766e1134fe765fbdf14458498c0996b6 Mon Sep 17 00:00:00 2001 From: horihiro Date: Tue, 30 Jun 2020 03:11:14 +0900 Subject: [PATCH] Add `await` keyword (#17) --- denofunc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/denofunc.ts b/denofunc.ts index 2111879..2a71150 100644 --- a/denofunc.ts +++ b/denofunc.ts @@ -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();