From 0487d7668a3b75558dd3a430abe1694b3ee49921 Mon Sep 17 00:00:00 2001 From: XXXXRT666 <157766680+XXXXRT666@users.noreply.github.com> Date: Wed, 30 Apr 2025 21:02:59 +0100 Subject: [PATCH] Fix Bugs --- Docker/anaconda_install.sh | 2 +- Docker/setup.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Docker/anaconda_install.sh b/Docker/anaconda_install.sh index 0ce71883..92965659 100644 --- a/Docker/anaconda_install.sh +++ b/Docker/anaconda_install.sh @@ -20,7 +20,7 @@ fi if [ "$TARGETPLATFORM" = "linux/amd64" ]; then eval "$WGET_CMD -O anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh" 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 exit 1 fi diff --git a/Docker/setup.sh b/Docker/setup.sh index 3f04509c..43c81eb1 100644 --- a/Docker/setup.sh +++ b/Docker/setup.sh @@ -12,9 +12,9 @@ WORKFLOW=${WORKFLOW:-"false"} LITE=${LITE:-"false"} 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" +else + WGET_CMD="wget --tries=25 --wait=5 --read-timeout=40 --retry-on-http-error=404" fi USE_FUNASR=false