mirror of https://github.com/linkerd/linkerd2.git
Fix unbound `DOCKER_TRACE` var in `bin/docker-test-proxy` (#1107)
I forgot to export this since the script no longer sources `. bin/_docker.sh`. Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
parent
ea01378090
commit
65585699b6
|
@ -2,6 +2,9 @@
|
|||
|
||||
set -eu
|
||||
|
||||
# When set, causes docker's build output to be emitted to stderr.
|
||||
export DOCKER_TRACE="${DOCKER_TRACE:-}"
|
||||
|
||||
if [ $# -ne 0 ]; then
|
||||
echo "no arguments allowed for $(basename $0), given: $@" >&2
|
||||
exit 64
|
||||
|
|
Loading…
Reference in New Issue