From 3e3a6dd40cf3103e7042077a0683b79cea64f7d0 Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Thu, 30 Jul 2020 23:45:28 -0400 Subject: [PATCH] deploy: name result --- tools/deploy/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/deploy/index.ts b/tools/deploy/index.ts index f767c098..44577684 100644 --- a/tools/deploy/index.ts +++ b/tools/deploy/index.ts @@ -35,7 +35,8 @@ program for (const file of files) { const src = pathlib.path(file); - const dst = pathlib.join(outputDir, pathlib.path(src, scr.runOnFile(src))); + const result = scr.runOnFile(src); + const dst = pathlib.join(outputDir, pathlib.path(src, result)); aq.copy(src, dst); }