diff --git a/bundle/src/assembly/resources/fed/ns3/ns3_installer.sh b/bundle/src/assembly/resources/fed/ns3/ns3_installer.sh index 75f723e1..5980c02d 100644 --- a/bundle/src/assembly/resources/fed/ns3/ns3_installer.sh +++ b/bundle/src/assembly/resources/fed/ns3/ns3_installer.sh @@ -274,10 +274,10 @@ download() { if [ ! -f "$filename" ]; then if has wget; then - wget --no-check-certificate -q "$url" || fail "The download URL seems to have changed. File not found: "$url""; + wget --no-check-certificate -q "$url" || fail "The server is not reachable or the download URL has changed. File not found: "$url""; temporary_files="$temporary_files $filename" elif has curl; then - curl -s -O "$url" || fail "The download URL seems to have changed. File not found: "$url""; + curl -s -O "$url" || fail "The server is not reachable or the download URL has changed. File not found: "$url""; temporary_files="$temporary_files $filename" else fail "Can't download "$url".";