File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -707,16 +707,11 @@ function release_zip(arch, appDirectory) {
707707// Compress files from srcPath, using basePath, to outputFile in the RELEASE_DIR
708708function 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
You can’t perform that action at this time.
0 commit comments