mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
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:
parent
ee34eb2180
commit
a746959fc1
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user