1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

docker-py: don't build --quiet is TESTDEBUG is set

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-07-13 18:47:36 +02:00
parent 968345bc5c
commit ba8f4c7994
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -36,7 +36,8 @@ source hack/make/.integration-test-helpers
echo INFO: Building ${docker_py_image}...
(
[ -n "${TESTDEBUG}" ] && set -x
exec docker build --quiet -t ${docker_py_image} -f tests/Dockerfile "https://github.com/docker/docker-py.git#${DOCKER_PY_COMMIT}"
[ -z "${TESTDEBUG}" ] && build_opts="--quiet"
exec docker build ${build_opts} -t ${docker_py_image} -f tests/Dockerfile "https://github.com/docker/docker-py.git#${DOCKER_PY_COMMIT}"
)
fi