This commit is contained in:
Christian Anetzberger
2026-01-22 20:23:51 +01:00
commit a197de9456
4327 changed files with 1235205 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import os, sys, traceback
def p(*a): print(*a, flush=True)
try:
base = os.path.dirname(os.path.abspath(__file__))
os.chdir(base)
sys.argv = ["stepanalyser.py", "--material", "stainless"]
code = open("stepanalyser.py", "r", encoding="utf-8").read()
exec(compile(code, "stepanalyser.py", "exec"), {"__name__": "__main__"})
except Exception:
p("RUNNER ERROR:")
p(traceback.format_exc())
finally:
os._exit(0)