forked from Ivasoft/traefik
Fix regression on plumbing scripts for developer usages
This commit is contained in:
committed by
Traefiker Bot
parent
886a6bdbe0
commit
5cd9396dae
@@ -17,10 +17,12 @@ docker version
|
||||
|
||||
if [ -n "$TEST_CONTAINER" ]; then
|
||||
echo "Testing from container…"
|
||||
CGO_ENABLED=0 go test -integration -container "${TESTFLAGS[@]}"
|
||||
# shellcheck disable=SC2086
|
||||
CGO_ENABLED=0 go test -integration -container ${TESTFLAGS[*]}
|
||||
fi
|
||||
|
||||
if [ -n "$TEST_HOST" ]; then
|
||||
echo "Testing from host…"
|
||||
CGO_ENABLED=0 go test -integration -host "${TESTFLAGS[@]}"
|
||||
# shellcheck disable=SC2086
|
||||
CGO_ENABLED=0 go test -integration -host ${TESTFLAGS[*]}
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user