Don't stop when startup_scripts quit

Fixes #284
This commit is contained in:
Christian Mäder 2020-05-14 16:02:03 +02:00
parent bed40b0d05
commit 77feec30a0

View File

@ -14,5 +14,10 @@ with scandir(dirname(abspath(__file__))) as it:
if f.name.startswith('__') or not f.is_file():
continue
print(f"Running {f.path}")
print(f"▶️ Running the startup script {f.path}")
try:
runpy.run_path(f.path)
except SystemExit as e:
if e.code is not None and e.code != 0:
print(f"‼️ The startup script {f.path} returned with code {e.code}, exiting.")
raise