diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-02-20 11:51:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 11:51:58 +0100 |
commit | 12e142565ea9b42260808a5269c3cf8bf1978721 (patch) | |
tree | e5db27812f4bce53d0eb3b1d0c594916ec994306 /utils/update_every_lists.sh | |
parent | 2f814c526b75ae9beb23e409376705f130f0228e (diff) |
Add a script to download/update the domain suffix list (#2321)
Diffstat (limited to 'utils/update_every_lists.sh')
-rwxr-xr-x | utils/update_every_lists.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/update_every_lists.sh b/utils/update_every_lists.sh index b988267d3..ba04493ea 100755 --- a/utils/update_every_lists.sh +++ b/utils/update_every_lists.sh @@ -42,6 +42,8 @@ RETVAL=$(( RETVAL + $? )) RETVAL=$(( RETVAL + $? )) ./protonvpn_ip_addresses_download.sh RETVAL=$(( RETVAL + $? )) +./public_suffix_list_download.sh +RETVAL=$(( RETVAL + $? )) test ${RETVAL} -ne 0 && printf '%s: %s\n' "${0}" "${RETVAL} script(s) failed" exit ${RETVAL} |