Fix incorrect archive root folder

It was broken by c0d992c387.
This commit is contained in:
Oliver Hamlet
2016-03-06 19:23:43 +00:00
parent 60d15b1f1f
commit dfe6fdd19e
+1 -1
View File
@@ -41,7 +41,7 @@ function compress(sourcePath, destPath) {
'a',
'-r',
destPath,
path.join('.', sourcePath, '*'),
`.${path.sep}${path.join(sourcePath, '*')}`,
]);
}