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:
Kir Kolyshkin
2024-07-29 11:44:26 -07:00
parent 89bca301be
commit 3279b4f8f4

View File

@@ -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