diff --git a/hack/make/test-integration-cli b/hack/make/test-integration-cli index 6e8b38892e..93330d7b09 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)