aboutsummaryrefslogtreecommitdiff
path: root/utils/tor_ip_addresses_download.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/tor_ip_addresses_download.sh')
-rwxr-xr-xutils/tor_ip_addresses_download.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/utils/tor_ip_addresses_download.sh b/utils/tor_ip_addresses_download.sh
index ed5cdc4c7..8598e1151 100755
--- a/utils/tor_ip_addresses_download.sh
+++ b/utils/tor_ip_addresses_download.sh
@@ -11,11 +11,11 @@ LIST=/tmp/tor.list
ORIGIN="https://check.torproject.org/torbulkexitlist"
-echo "(1) Downloading file..."
+echo "(1) Downloading file... ${ORIGIN}"
http_response=$(curl -s -o $LIST -w "%{http_code}" ${ORIGIN})
if [ $http_response != "200" ]; then
echo "Error $http_response: you probably need to update the list url!"
- return
+ return 1
fi
echo "(2) Processing IP addresses..."
@@ -23,6 +23,4 @@ echo "(2) Processing IP addresses..."
rm -f $LIST
echo "(3) TOR IPs are available in $DEST"
-
-
-
+return 0