chore(run): 🔨 Add timeout enforcement for script execution in build system

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-02 19:10:57 -08:00
parent 9691241189
commit 46fec28dcd

View file

@ -109,9 +109,9 @@ def load_command(command_path: Path):
def main():
"""Main entry point."""
# This script is at workspace root, so workspace_root = script directory
# This script is at scripts/run/, go up 2 levels to workspace root
script_path = Path(__file__).resolve()
workspace_root = script_path.parent
workspace_root = script_path.parent.parent.parent
runner = ScriptRunner(workspace_root)