Skip to content

Commit 7b23ade

Browse files
committed
[fix] : Fixed lzo setting range
1 parent ba1f2ee commit 7b23ade

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
@@ -474,7 +474,7 @@ Function_Global_Ask_comp_option () {
474474
Function_Local_lzo_level () {
475475
msg_n "lzoの圧縮レベルを入力してください。 (1~9) : " "Enter the gzip compression level. (1~9) : "
476476
read Var_Local_lzo_level
477-
if ! [[ ${Var_Local_lzo_level} -lt 9 && ${Var_Local_lzo_level} -ge 1 ]]; then
477+
if ! [[ ${Var_Local_lzo_level} -lt 10 && ${Var_Local_lzo_level} -ge 1 ]]; then
478478
Function_Local_lzo_level
479479
return 0
480480
fi

0 commit comments

Comments
 (0)