Use watch to keepalive stdout while installing.

This commit is contained in:
Jordan Harband
2016-09-02 23:43:47 -07:00
parent 88ce2103f5
commit 32a1b4124c
+1 -1
View File
@@ -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=$?