Skip to content

Commit

Permalink
Fix issue causing registry prompt to always appear (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Rokos authored Jul 21, 2023
1 parent 794832a commit 226163e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vmware_aria_operations_integration_sdk/mp_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ def _tag_and_push(
CONFIG_FALLBACK_CONTAINER_REGISTRY_KEY, config_file=config_file
)

# we want to keep track of the original value, so we can update it if nesessary
# we want to keep track of the original value, so we can update it if necessary
original_value = container_registry

digest = ""
should_prompt = container_registry_arg is None
should_prompt = container_registry is None
while not digest:
container_registry = validate_container_registry(
adapter_kind_key,
Expand Down

0 comments on commit 226163e

Please sign in to comment.