From 15a6195bf0eab933bdaad0d808a3a094b2b27d2a Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sun, 10 Nov 2024 14:46:37 +0000 Subject: [PATCH] Use entr's -c flag in script --- scripts/entr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/entr.sh b/scripts/entr.sh index 7161fe9..7553621 100755 --- a/scripts/entr.sh +++ b/scripts/entr.sh @@ -1,4 +1,4 @@ #!/bin/sh cd "$(git rev-parse --show-toplevel)" find . -not \( -path './.git' -prune \) -not \( -path './build' -prune \) \ - | entr -s 'clear && scripts/build.sh && scripts/test.sh' + | entr -cs 'scripts/build.sh && scripts/test.sh'