From 7e77f901d21c1185677bb0cc1e989fcf99473e22 Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Tue, 28 Mar 2023 14:55:34 +0200
Subject: [PATCH] Silence `inotifywait`

---
 install-keil.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/install-keil.sh b/install-keil.sh
index cd50203..0678ce3 100755
--- a/install-keil.sh
+++ b/install-keil.sh
@@ -12,7 +12,7 @@ mkdir -p --mode=777 /tmp/.X11-unix;
 
 # Create a job for waiting for Xvfb to start
 watchStarting="$(mktemp)";
-{ 2>&1 inotifywait -e create /tmp/.X11-unix/; } | { sed -u -e "/^Watches established.$/e rm \"$watchStarting\""; } &
+{ 2>&1 inotifywait -e create /tmp/.X11-unix/ > /dev/null; } | { sed -u -e "/^Watches established.$/e rm \"$watchStarting\""; } &
 displayResolver="$!";
 
 # Wait for `inotifywait` to start