deploy: remove another nodePath reference

This commit is contained in:
Christopher Monsanto 2020-08-12 06:24:56 -04:00
parent 9f8f84b25c
commit 193d4e35b9

View File

@ -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');