hack: fix SC2069 : to redirect stdout+stderr, 2>&1 must be last

See https://github.com/koalaman/shellcheck/wiki/SC2069

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2020-08-30 12:57:19 +02:00
parent ee34eb2180
commit a746959fc1
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ case $buildmode in
esac
cacheVolume="buildx-cache"
if ! docker inspect "$cacheVolume" 2>&1 >/dev/null ; then
if ! docker inspect "$cacheVolume" > /dev/null 2>&1 ; then
cacheVolume=$(docker create --name=buildx-cache -v /root/.cache -v /go/pkg/mod alpine)
fi