2019-12-14 11:16:31 -06:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import runpy
|
|
|
|
from os import scandir
|
|
|
|
from os.path import dirname, abspath
|
|
|
|
|
|
|
|
this_dir = dirname(abspath(__file__))
|
|
|
|
|
|
|
|
def filename(f):
|
2020-01-31 04:35:25 -06:00
|
|
|
return f.name
|
2019-12-14 11:16:31 -06:00
|
|
|
|
2020-10-17 16:09:26 -05:00
|
|
|
with scandir(this_dir) as it:
|
2020-01-31 04:35:25 -06:00
|
|
|
for f in sorted(it, key = filename):
|
2020-06-02 06:37:57 -05:00
|
|
|
if not f.is_file():
|
|
|
|
continue
|
|
|
|
|
|
|
|
if f.name.startswith('__'):
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not f.name.endswith('.py'):
|
2020-01-31 04:35:25 -06:00
|
|
|
continue
|
2020-05-14 09:02:03 -05:00
|
|
|
|
2020-12-30 17:23:12 -06:00
|
|
|
print(f"▶️ Running the startup script {f.path}")
|
2020-05-14 09:02:03 -05:00
|
|
|
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
|