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:
parent
968345bc5c
commit
ba8f4c7994
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue