Skip to content

Commit 5d4b863

Browse files
committed
--no-edit
1 parent 8572a73 commit 5d4b863

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

gulpfile.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -707,16 +707,11 @@ function release_zip(arch, appDirectory) {
707707
// Compress files from srcPath, using basePath, to outputFile in the RELEASE_DIR
708708
function compressFiles(srcPath, basePath, outputFile, zipFolder) {
709709

710-
// Ubuntu introduces ZST compression not included in Debian. For now we disable compression for linux as workaround.
711-
const options = {
712-
compressFiles: basePath.includes("linux") ? false : true,
713-
};
714-
715710
return gulp.src(srcPath, { base: basePath })
716711
.pipe(rename(function(actualPath) {
717712
actualPath.dirname = path.join(zipFolder, actualPath.dirname);
718713
}))
719-
.pipe(zip(outputFile, options))
714+
.pipe(zip(outputFile))
720715
.pipe(gulp.dest(RELEASE_DIR));
721716
}
722717

0 commit comments

Comments
 (0)