CLI build_command bugfix

This commit is contained in:
Dan Saunders
2025-01-08 16:34:19 +00:00
parent 70c4e6fbe6
commit 443327c585

View File

@@ -92,6 +92,8 @@ def build_command(base_cmd: List[str], options: Dict[str, Any]) -> List[str]:
if isinstance(value, bool):
if value:
cmd.append(f"--{key}")
else:
cmd.append(f"--no{key}")
else:
cmd.extend([f"--{key}", str(value)])