From a10a2f74c4b0146cf6024934cb2eb7025bdf4edf Mon Sep 17 00:00:00 2001 From: Christoph Date: Thu, 21 Dec 2017 15:25:51 +0100 Subject: [PATCH] install_sympa.sh: fix error in downloading sympa source file. --- install_sympa.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_sympa.sh b/install_sympa.sh index cb6777c..dd317d9 100755 --- a/install_sympa.sh +++ b/install_sympa.sh @@ -1405,8 +1405,8 @@ if [ ! -f sympa-${SYMPA_VERSION}.tar.gz ]; then # - OLD #echo "wget https://www.sympa.org/distribution/sympa-${SYMPA_VERSION}.tar.gz" >> $_log_file #wget https://www.sympa.org/distribution/sympa-${SYMPA_VERSION}.tar.gz >> $_log_file 2>&1 - echo "wget https://github.com/sympa-community/sympa/releases/download/6.2.22/sympa-6.2.22.tar.gz" >> $_log_file - wget https://github.com/sympa-community/sympa/releases/download/6.2.22/sympa-6.2.22.tar.gz >> $_log_file 2>&1 + echo "wget https://github.com/sympa-community/sympa/releases/download/${SYMPA_VERSION}/sympa-${SYMPA_VERSION}.tar.gz" >> $_log_file + wget https://github.com/sympa-community/sympa/releases/download/${SYMPA_VERSION}/sympa-${SYMPA_VERSION}.tar.gz >> $_log_file 2>&1 if [ "$?" = "0" ]; then echo_ok else