From e506ccb27dee00ac206acdb95a23a11bb6f797c0 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 9 Oct 2022 16:16:29 -0700 Subject: [PATCH] Make get-tor.py fail hard on errors --- desktop/scripts/get-tor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/scripts/get-tor.py b/desktop/scripts/get-tor.py index 0f67fde8..f39558be 100644 --- a/desktop/scripts/get-tor.py +++ b/desktop/scripts/get-tor.py @@ -295,7 +295,7 @@ def update_tor_bridges(): print( f"There was a problem fetching the latest built-in bridges: status_code={r.status_code}" ) - return False + sys.exit(1) result = r.json() print(f"Built-in bridges: {result}") @@ -304,7 +304,7 @@ def update_tor_bridges(): print( f"There was a problem fetching the latest built-in bridges: errors={result['errors']}" ) - return False + sys.exit(1) for bridge_type in ["meek-azure", "obfs4", "snowflake"]: if bridge_type in result and result[bridge_type]: