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