1
0
forked from finn/tinyboard

onboard-spoke.sh: replace raise SystemExit with sys.exit(0) in union duplicate check

This commit is contained in:
Justin Oros
2026-04-18 21:47:55 -07:00
parent 6db5e9769e
commit e9c1daccce

View File

@@ -182,7 +182,7 @@ for line in lines:
in_section = False in_section = False
if in_section and line.startswith("upstreams =") and prefix in line: if in_section and line.startswith("upstreams =") and prefix in line:
print("yes") print("yes")
raise SystemExit sys.exit(0)
print("no") print("no")
PYEOF PYEOF
) )