Specify images are also verified

This commit is contained in:
William Wernert
2021-08-11 16:35:33 -04:00
parent 64dfc6e191
commit 4a31d6b3bc

View File

@@ -156,7 +156,7 @@ def pull_image(module: str):
local_registry_match = list(filter(lambda x: ':5000' in x, basename_match))
if len(local_registry_match) == 0:
print(f'Pulling missing image for {module} (may take several minutes) ...')
print(f'Pulling and verifying missing image for {module} (may take several minutes) ...')
pull_command = ['so-image-pull', '--quiet', container_basename]
proc = subprocess.run(pull_command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)