From 724de4fd9c4ce2b30547fca867245a16b99ce09b Mon Sep 17 00:00:00 2001 From: bigeagle Date: Tue, 22 Aug 2017 16:41:24 +0800 Subject: [PATCH] anaconda: add bioconda --- anaconda.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anaconda.sh b/anaconda.sh index 2e82931..e3c550d 100755 --- a/anaconda.sh +++ b/anaconda.sh @@ -20,7 +20,7 @@ TMP_DIR=$(mktemp -d) CONDA_REPOS=("free" "r" "mro" "pro") CONDA_ARCHES=("noarch" "linux-64" "linux-32" "linux-armv6l" "linux-armv7l" "linux-ppc64le" "osx-64" "osx-32" "win-64" "win-32") -CONDA_CLOUD_REPOS=("conda-forge/linux-64" "conda-forge/osx-64" "conda-forge/win-64" "conda-forge/noarch" "msys2/win-64" "msys2/noarch") +CONDA_CLOUD_REPOS=("conda-forge/linux-64" "conda-forge/osx-64" "conda-forge/win-64" "conda-forge/noarch" "msys2/win-64" "msys2/noarch" "bioconda/linux-64" "bioconda/osx-64") EXIT_STATUS=0 EXIT_MSG="" @@ -31,7 +31,7 @@ function check-and-download () { wget -q --spider ${remote_file} if [ $? -eq 0 ]; then echo "downloading ${remote_file}" - wget -q -N -O ${local_file} ${remote_file} + wget -q -O ${local_file} ${remote_file} return fi return 1