Skip to content

Commit 8c0bdca

Browse files
committed
[fix] : Fixed the range of advanced zstd settings
1 parent 5a25cb3 commit 8c0bdca

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
@@ -421,7 +421,7 @@ Function_Global_Ask_comp_option () {
421421
"zstdの圧縮レベルを入力してください。 (1~22) : " \
422422
"Enter the zstd compression level. (1~22) : "
423423
read Var_Local_zstd_level
424-
if [[ ${Var_Local_zstd_level} -lt 23 && ${Var_Local_zstd_level} -ge 4 ]]; then
424+
if [[ ${Var_Local_zstd_level} -lt 23 && ${Var_Local_zstd_level} -ge 1 ]]; then
425425
comp_option="-Xcompression-level ${Var_Local_zstd_level}"
426426
else
427427
Function_Local_comp_option

0 commit comments

Comments
 (0)