aboutsummaryrefslogtreecommitdiff
path: root/utils/icloud_private_relay_ip_addresses_download.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/icloud_private_relay_ip_addresses_download.sh')
-rwxr-xr-xutils/icloud_private_relay_ip_addresses_download.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/utils/icloud_private_relay_ip_addresses_download.sh b/utils/icloud_private_relay_ip_addresses_download.sh
index 149185d83..242dd17b9 100755
--- a/utils/icloud_private_relay_ip_addresses_download.sh
+++ b/utils/icloud_private_relay_ip_addresses_download.sh
@@ -9,11 +9,11 @@ LIST_MERGED=/tmp/icloud.list_m
ORIGIN="https://mask-api.icloud.com/egress-ip-ranges.csv"
-echo "(1) Downloading file..."
+echo "(1) Downloading file... ${ORIGIN}"
http_response=$(curl -s -o "$TMP" -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..."
@@ -25,6 +25,4 @@ cut -d ',' -f 1 $TMP | grep -v ':' > $LIST
rm -f $TMP $LIST $LIST_MERGED
echo "(3) iCloud Private Relay IPs are available in $DEST"
-
-
-
+return 0