Skip to content

Commit 336b1cd

Browse files
author
Jasper Koers
committed
Update zip command to use maximum compression level (-9) for better output size when compressing application on MacOS
1 parent 9883a9f commit 336b1cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BuildProcess/CompressApplication.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function __invoke()
6565
*/
6666
protected function compressApplicationOnMac()
6767
{
68-
(new Process(['zip', '-r', $this->buildPath.'/app.zip', '.'], $this->appPath))->mustRun();
68+
(new Process(['zip', '-r -9', $this->buildPath.'/app.zip', '.'], $this->appPath))->mustRun();
6969
}
7070

7171
/**

0 commit comments

Comments
 (0)