mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
hack/make: suppress "not mounted" message
The "not mounted" error from .integration-daemon-stop is not an error, so let's suppress that one (this is the only effect of -q option, at least according to its man page). Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
@@ -15,7 +15,7 @@ if [ ! "$(go env GOOS)" = 'windows' ]; then
|
||||
fi
|
||||
root=$(dirname "$pidFile")/root
|
||||
if [ -d "$root" ]; then
|
||||
umount "$root" || true
|
||||
umount -q "$root" || true
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user