From 3279b4f8f414d15cdbb6501b0bf81096775976b4 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 29 Jul 2024 11:44:26 -0700 Subject: [PATCH] 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 --- hack/make/.integration-daemon-stop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make/.integration-daemon-stop b/hack/make/.integration-daemon-stop index 59f62aa593..fd156546df 100644 --- a/hack/make/.integration-daemon-stop +++ b/hack/make/.integration-daemon-stop @@ -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