mirror of
https://gitee.com/doramart/DoraCMS.git
synced 2024-12-04 21:27:52 +08:00
11 lines
82 B
Bash
11 lines
82 B
Bash
#!/bin/bash
|
|
|
|
make test
|
|
|
|
ret=$?
|
|
|
|
while [ $ret == 0 ]; do
|
|
make test
|
|
ret=$?
|
|
done
|