优化依赖安装

This commit is contained in:
2024-08-31 08:25:06 +08:00
parent c960e02e0c
commit 3df222b7c4
@@ -38,5 +38,11 @@ neofetch
#apt build-dep qemu -y
# 如果是 Debian10 就需要安装 Python3 的依赖
#apt build-dep python3.7 -y
apt build-dep . -y
for i in {1..5};
do
apt build-dep . -y
if [[ $? == 0 ]]; then
break
fi
done
exit 0