We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4175954 commit e2855c8Copy full SHA for e2855c8
sh/ghGenerate.sh
@@ -14,7 +14,7 @@ tree -ifl | while IFS= read -r file; do
14
if [ -f "$file" ]; then
15
# Is a file
16
if [ "$(echo "$file" | grep -E "$COMPRESS_CRIT")" != "" ]; then
17
- zopfli --i1 "$file" && echo "Compressed \"${file}\" with Zopfli."
+ gzip -v9 "$file" #&& echo "Compressed \"${file}\" with Zopfli."
18
else
19
echo "File \"${file}\" cannot be compressed."
20
fi
@@ -30,7 +30,7 @@ tree -ifl | while IFS= read -r file; do
30
31
32
33
- brotli -vq 11 "$file"
+ brotli -v9 "$file"
34
35
36
0 commit comments