jsjolen / smallest-java-ci

CI that we made for edu. purposes.
0 stars 0 forks source link

Bug 24 Fix so that GitRunner waits for the processes to finish. #25

Closed jsjolen closed 5 years ago

jsjolen commented 5 years ago

Fixes #24

The bug is that we can't Thread.sleep(), we need to actually wait for the processes to finish (using Process#waitFor()).

modnikhil commented 5 years ago

Approved. Good catches