From 817cc0f1f86f791bec00c661c80d75e0c6137704 Mon Sep 17 00:00:00 2001 From: z80 <83730246+z80dev@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:29:49 -0500 Subject: [PATCH] fix: skip git repo check for codex runs (#66) --- src/takopi/runners/codex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/takopi/runners/codex.py b/src/takopi/runners/codex.py index cc04d15..aa57fd0 100644 --- a/src/takopi/runners/codex.py +++ b/src/takopi/runners/codex.py @@ -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 ):