diff --git a/scripts/bundle-images.sh b/scripts/bundle-images.sh index ddbfae0ee..5468f8165 100755 --- a/scripts/bundle-images.sh +++ b/scripts/bundle-images.sh @@ -141,6 +141,12 @@ do continue fi + tag=$(echo $image | cut -d':' -f2) + if [[ $tag == "" ]]; then + echo "Will not pull image: $image with tag , continuing..." + continue + fi + docker pull $image if [[ $? -ne 0 ]]; then echo "Error: Failed to pull $image"