From 1032980d1f4c1db1d6063404c77a4df498113c5f Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Thu, 30 Jul 2020 23:33:09 -0400 Subject: [PATCH] deploy: fix ActionQueue.run() --- tools/deploy/script.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/deploy/script.ts b/tools/deploy/script.ts index 058297a5..0bb3065c 100644 --- a/tools/deploy/script.ts +++ b/tools/deploy/script.ts @@ -22,7 +22,7 @@ export class ActionQueue { run(mode : 'link' | 'copy') { for (const {src, dst} of this.queue) { - fs.mkdirSync(src.dir, {recursive: true}); + fs.mkdirSync(dst.dir, {recursive: true}); if (mode === 'link') { fs.linkSync(pathlib.format(src), pathlib.format(dst)); } else {