windows-watch #4

Merged
roman merged 4 commits from windows-watch into master 2022-11-24 05:25:33 +00:00
Showing only changes of commit c42c9fecba - Show all commits
+1 -1
View File
@@ -378,7 +378,7 @@ async function zipProject() {
archive.pipe(output);
// append files from a subdirectory, putting its contents at the root of archive
archive.directory(path.join(projectPath, 'src', '/'), false);
archive.directory(path.join(projectPath, 'src'), false);
// finalize the archive (ie we are done appending files but streams have to finish yet)
// 'close', 'end' or 'finish' may be fired right after calling this method so register to them beforehand