Skip to content

Commit 95a3e6d

Browse files
committed
[fix] : Fixed gzip compression level
1 parent 56fcacf commit 95a3e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/wizard.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Function_Global_Ask_comp_option () {
325325
Function_Local_gzip_level () {
326326
msg_n "gzipの圧縮レベルを入力してください。 (1~22) : " "Enter the gzip compression level. (1~22) : "
327327
read Var_Local_gzip_level
328-
if ! [[ ${Var_Local_gzip_level} -lt 23 && ${Var_Local_gzip_level} -ge 4 ]]; then
328+
if ! [[ ${Var_Local_gzip_level} -lt 23 && ${Var_Local_gzip_level} -ge 1 ]]; then
329329
Function_Local_gzip_level
330330
return 0
331331
fi

0 commit comments

Comments
 (0)