From 193d4e35b93d0d6daefb753b2475b51352ae5f27 Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Wed, 12 Aug 2020 06:24:56 -0400 Subject: [PATCH] deploy: remove another nodePath reference --- tools/deploy/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/deploy/index.ts b/tools/deploy/index.ts index b8d7a1f3..421ccaac 100644 --- a/tools/deploy/index.ts +++ b/tools/deploy/index.ts @@ -30,10 +30,11 @@ program const aq = new script.ActionQueue; for (const src of files) { - const output = script.runOnFile(scr, src); - const dst = nodePath.join(outputDir, output); + const dst = script.runOnFile(scr, src); aq.copy(src, dst); } + + aq.join(outputDir); if (act) { aq.run('copy');