deploy: name result

This commit is contained in:
Christopher Monsanto
2020-07-30 23:45:28 -04:00
parent 5661d5e1e9
commit 3e3a6dd40c

View File

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