diff --git a/hack/make/test-integration-cli b/hack/make/test-integration-cli index 6e8b38892e5561ef11005e042d7f0d2fb55af636..93330d7b096b14a4983435db668fc62d42e4fa88 100644 --- a/hack/make/test-integration-cli +++ b/hack/make/test-integration-cli @@ -29,8 +29,11 @@ bundle_test_integration_cli() { # pull the busybox image before running the tests sleep 2 - ( set -x; docker pull busybox ) + if ! docker inspect busybox &> /dev/null; then + ( set -x; docker pull busybox ) + fi + bundle_test_integration_cli DOCKERD_PID=$(set -x; cat $DEST/docker.pid)