From 4ff877aa2d9a378376a37b0dd04f8cbcc908b13d Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Mon, 21 Sep 2026 11:29:36 -0400 Subject: [PATCH] bin(watch-run): Skip print on directory change --- bin/watch-run | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/watch-run b/bin/watch-run index 1f263a8..aaae099 100755 --- a/bin/watch-run +++ b/bin/watch-run @@ -13,6 +13,4 @@ cmd=("$@") # I specifically want the command to expand here. # # shellcheck disable=SC2068 -until fd . "${dir}" | entr -dr ${cmd[@]}; do - echo 'Press Space or edit a file to re-run command' -done +until fd . "${dir}" | entr -dr ${cmd[@]}; do :; done