From 6f44b6ffa64a652b0c17cbc09ba1a15b89a8c200 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 7 Jun 2023 16:14:32 -0400 Subject: [PATCH] remove await --- scripts/make-metadata.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-metadata.js b/scripts/make-metadata.js index 546ddf41..b45c1af0 100644 --- a/scripts/make-metadata.js +++ b/scripts/make-metadata.js @@ -7,4 +7,4 @@ import commandLineArgs from 'command-line-args'; const { outdir } = commandLineArgs({ name: 'outdir', type: String }); -await execSync(`cem analyze --litelement --outdir "${outdir}"`, { stdio: 'inherit' }); +execSync(`cem analyze --litelement --outdir "${outdir}"`, { stdio: 'inherit' });