Add an alternative download link for utils

Download utils from my gitlab repo in case downloading from GitHub fails for some reason.
This commit is contained in:
Kron4ek 2024-08-31 16:59:59 +03:00 committed by GitHub
parent dd2a1482ce
commit 5157084b54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -69,6 +69,12 @@ if [ ! -f "${utils}" ] || [ "$(wc -c < "${utils}")" -lt 100000 ]; then
rm -f "${utils}" rm -f "${utils}"
curl -#LO "${utils_url}" curl -#LO "${utils_url}"
if [ ! -f "${utils}" ] || [ "$(wc -c < "${utils}")" -lt 100000 ]; then
rm -f "${utils}"
curl -#LO "https://gitlab.com/-/project/61149207/uploads/e92d40b6cebc80d1ea5018172b6d76db/utils.tar"
tar -xf utils.tar
fi
fi fi
if [ ! -f conty-start.sh ]; then if [ ! -f conty-start.sh ]; then