From 46fec28dcd8c7a0498b1df4832cf0cbaa2a3d70d Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 2 Feb 2026 19:10:57 -0800 Subject: [PATCH] =?UTF-8?q?chore(run):=20=F0=9F=94=A8=20Add=20timeout=20en?= =?UTF-8?q?forcement=20for=20script=20execution=20in=20build=20system?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- scripts/run/script_runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run/script_runner.py b/scripts/run/script_runner.py index cd975640..20959157 100755 --- a/scripts/run/script_runner.py +++ b/scripts/run/script_runner.py @@ -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)