We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 836a9ec commit cc4b5feCopy full SHA for cc4b5fe
2 files changed
src/agentex/lib/cli/commands/agents.py
@@ -146,8 +146,8 @@ def build(
146
try:
147
image_url = build_agent(
148
manifest_path=manifest,
149
- registry_url=registry, # Now guaranteed to be non-None
150
- repository_name=repository_name or "default-repo", # Provide default
+ registry_url=registry,
+ repository_name=repository_name,
151
platforms=platform_list,
152
push=push,
153
secret=secret or "", # Provide default empty string
src/agentex/lib/cli/handlers/agent_handlers.py
@@ -21,7 +21,7 @@ class DockerBuildError(Exception):
21
def build_agent(
22
manifest_path: str,
23
registry_url: str,
24
- repository_name: str,
+ repository_name: str | None,
25
platforms: list[str],
26
push: bool = False,
27
secret: str = None,
0 commit comments