Commit 9a97040a authored by Chiggs's avatar Chiggs

Correct syntax error in bash script

parent 89f9ffcb
......@@ -11,5 +11,5 @@ script:
- cd syn && PATH=$PWD/../altera/14.0/quartus/bin:$PATH make &
- pid=$!
- echo $pid
- while sleep 1m; echo Waiting on $pid; kill -0 $pid >/dev/null 2>&1; do; done
- while kill -0 $pid >/dev/null 2>&1; do sleep 1m; echo Build still running, honest; done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment