12 lines
156 B
Bash
12 lines
156 B
Bash
|
#!/usr/bin/env bash
|
||
|
if [ -d test ]
|
||
|
then
|
||
|
if [ -z "$(ls -A test)" ]; then
|
||
|
exit 0
|
||
|
else
|
||
|
flutter test --coverage
|
||
|
fi
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|