mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
11 lines
82 B
Bash
11 lines
82 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
make test
|
||
|
|
||
|
ret=$?
|
||
|
|
||
|
while [ $ret == 0 ]; do
|
||
|
make test
|
||
|
ret=$?
|
||
|
done
|