From c7af89f12c8dd713fea324872b6282fa48949bc3 Mon Sep 17 00:00:00 2001 From: calebboyd Date: Thu, 31 Aug 2017 10:02:12 -0500 Subject: [PATCH] fix: don't call next twice --- src/steps/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/download.ts b/src/steps/download.ts index b117c17..4e01ce8 100644 --- a/src/steps/download.ts +++ b/src/steps/download.ts @@ -37,7 +37,7 @@ export default async function downloadNode(compiler: NexeCompiler, next: () => P } if (compiler.options.build) { - await fetchNodeSourceAsync(src, url, step, downloadOptions).then(next) + await fetchNodeSourceAsync(src, url, step, downloadOptions) } return next()