This commit is contained in:
XXXXRT666 2025-04-30 21:02:59 +01:00
parent af7d3e45d5
commit 0487d7668a
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ fi
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then if [ "$TARGETPLATFORM" = "linux/amd64" ]; then
eval "$WGET_CMD -O anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh" eval "$WGET_CMD -O anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh"
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then
eval "$WGET_CMD -O anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-aarch.sh" eval "$WGET_CMD -O anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-aarch64.sh"
else else
exit 1 exit 1
fi fi

View File

@ -12,9 +12,9 @@ WORKFLOW=${WORKFLOW:-"false"}
LITE=${LITE:-"false"} LITE=${LITE:-"false"}
if [ "$WORKFLOW" = "true" ]; then if [ "$WORKFLOW" = "true" ]; then
WGET_CMD="wget --tries=25 --wait=5 --read-timeout=40 --retry-on-http-error=404"
else
WGET_CMD="wget -nv --tries=25 --wait=5 --read-timeout=40 --retry-on-http-error=404" WGET_CMD="wget -nv --tries=25 --wait=5 --read-timeout=40 --retry-on-http-error=404"
else
WGET_CMD="wget --tries=25 --wait=5 --read-timeout=40 --retry-on-http-error=404"
fi fi
USE_FUNASR=false USE_FUNASR=false