install_sympa.sh: fix error in downloading sympa source file.

This commit is contained in:
Christoph 2017-12-21 15:25:51 +01:00
parent 2144ee2b93
commit a10a2f74c4

View File

@ -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