Add missing await.

This commit is contained in:
Dillon Kearns 2021-04-24 07:21:24 -07:00
parent 401f67aed9
commit 6582aa9beb

View File

@ -25,7 +25,7 @@ const ELM_FILE_PATH = path.join(
);
async function ensureRequiredDirs() {
fs.tryMkdir(`dist`);
await fs.tryMkdir(`dist`);
}
async function run(options) {