From dfe6fdd19e4882d928f21f55c10c7af5f502652b Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 6 Mar 2016 19:23:43 +0000 Subject: [PATCH] Fix incorrect archive root folder It was broken by c0d992c387ac26f0be042502bd2dcab11ee4f5e1. --- scripts/archive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/archive.js b/scripts/archive.js index c0d9974b..8b8a444b 100644 --- a/scripts/archive.js +++ b/scripts/archive.js @@ -41,7 +41,7 @@ function compress(sourcePath, destPath) { 'a', '-r', destPath, - path.join('.', sourcePath, '*'), + `.${path.sep}${path.join(sourcePath, '*')}`, ]); }