Use `watch` to keepalive stdout while installing.
parent
88ce2103f5
commit
32a1b4124c
|
@ -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=$?
|
||||
|
|
Loading…
Reference in New Issue