diff --git a/scripts/docker-integration-tests/run.sh b/scripts/docker-integration-tests/run.sh index a3b3c565a1..35557ffa31 100755 --- a/scripts/docker-integration-tests/run.sh +++ b/scripts/docker-integration-tests/run.sh @@ -21,6 +21,7 @@ TESTS=( # installed and we may not have perms to install it. "Install" it in the worst # possible way. if ! command -v nc; then + echo "installing netcat" NCDIR="$(mktemp -d)" docker run --rm debian:latest bash -c 'apt-get update &>/dev/null && apt-get install -y netcat &>/dev/null &&