From 32a1b4124cbc31492db7dfd4faca1968af88edd5 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sun, 14 Aug 2016 15:40:39 -0700 Subject: [PATCH] Use `watch` to keepalive stdout while installing. --- test/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common.sh b/test/common.sh index 98be7b3..095c1a8 100644 --- a/test/common.sh +++ b/test/common.sh @@ -68,7 +68,7 @@ watch() { $@ & local JOB JOB=$! - while true; do sleep 15; echo '* ping *'; done & + while true; do sleep 15; >&2 echo '* ping *'; done & wait $JOB; local EXIT_CODE EXIT_CODE=$?