mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 10:52:47 +00: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
|