fix: create dir path

This commit is contained in:
Andrei O 2022-03-29 05:23:39 +03:00
parent 967a0d882d
commit 5b0fe40269
No known key found for this signature in database
GPG Key ID: B961E5B68389457E
2 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.1.2",
"version_name": "1.1.2",
"version": "1.1.3",
"version_name": "1.1.3",
"permissions": [],
"content_scripts": [
{

View File

@ -16,7 +16,7 @@ async function ghRelease(changes) {
await new Promise((resolve, reject) => {
let arch = archive;
dirPipes.forEach((dir) => {
arch = arch.directory(dir, false);
arch = arch.directory(dir);
});
filePipes.forEach((file) => {
arch = arch.file(file, { name: file });