修复安装软件错误

This commit is contained in:
lsy 2024-09-23 18:43:29 +08:00
parent 839d4006aa
commit 824c166209

View File

@ -47,7 +47,6 @@ done
echo "请输入需要安装的软件序号(默认安装全部)"
read -p "用 空格 隔开:" pick
declare i
if [[ -z $pick ]];then
for (( i = 1; i <= ${#soft_dick[@]}; i++ )); do
if [[ $i != 1 ]]; then
@ -56,7 +55,7 @@ if [[ -z $pick ]];then
pick="$i"
fi
done
elif [[ ! $pick =~ [1-$i\ ] ]];then
elif [[ ! $pick =~ [1-$soft_number\ ] ]];then
echo "输入错误"
exit
fi