From e9c1dacccef88876aee4f71b880ca5a885fc2a5c Mon Sep 17 00:00:00 2001 From: Justin Oros Date: Sat, 18 Apr 2026 21:47:55 -0700 Subject: [PATCH] onboard-spoke.sh: replace raise SystemExit with sys.exit(0) in union duplicate check --- hub/onboard-spoke.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/onboard-spoke.sh b/hub/onboard-spoke.sh index ef41cea..fb8b162 100755 --- a/hub/onboard-spoke.sh +++ b/hub/onboard-spoke.sh @@ -182,7 +182,7 @@ for line in lines: in_section = False if in_section and line.startswith("upstreams =") and prefix in line: print("yes") - raise SystemExit + sys.exit(0) print("no") PYEOF )