fix: skip git repo check for codex runs (#66)

This commit is contained in:
z80
2026-01-08 15:29:49 -05:00
committed by GitHub
parent 8dc7cfac62
commit 817cc0f1f8
+1 -1
View File
@@ -572,7 +572,7 @@ def build_runner(config: EngineConfig, config_path: Path) -> Runner:
extra_args_value = config.get("extra_args")
if extra_args_value is None:
extra_args = ["-c", "notify=[]"]
extra_args = ["-c", "notify=[]", "--skip-git-repo-check"]
elif isinstance(extra_args_value, list) and all(
isinstance(item, str) for item in extra_args_value
):