fix: skip git repo check for codex runs (#66)
This commit is contained in:
@@ -572,7 +572,7 @@ def build_runner(config: EngineConfig, config_path: Path) -> Runner:
|
|||||||
|
|
||||||
extra_args_value = config.get("extra_args")
|
extra_args_value = config.get("extra_args")
|
||||||
if extra_args_value is None:
|
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(
|
elif isinstance(extra_args_value, list) and all(
|
||||||
isinstance(item, str) for item in extra_args_value
|
isinstance(item, str) for item in extra_args_value
|
||||||
):
|
):
|
||||||
|
|||||||
Reference in New Issue
Block a user