fix: shellcheck

This commit is contained in:
Michael 2022-09-14 15:10:08 +02:00 committed by GitHub
parent 788f8fa951
commit fd95560c66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 30 additions and 20 deletions

View file

@ -5,9 +5,9 @@ export DEST=.
TESTFLAGS+=("-test.timeout=20m" -check.v)
if [ -n "$VERBOSE" ]; then
if [ -n "${VERBOSE}" ]; then
TESTFLAGS+=(-v)
elif [ -n "$VERBOSE_INTEGRATION" ]; then
elif [ -n "${VERBOSE_INTEGRATION}" ]; then
TESTFLAGS+=(-v)
fi
@ -16,4 +16,5 @@ echo "Testing against..."
docker version
# shellcheck disable=SC2086
# shellcheck disable=SC2048
CGO_ENABLED=0 go test -integration ${TESTFLAGS[*]}