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)