Skip to content

Commit

Permalink
Merge pull request moby#48272 from kolyshkin/not-mounted
Browse files Browse the repository at this point in the history
hack/make: suppress "not mounted" message
  • Loading branch information
AkihiroSuda authored Jul 30, 2024
2 parents 89bca30 + 3279b4f commit fe875a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/make/.integration-daemon-stop
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit fe875a9

Please sign in to comment.