6 lines
94 B
Bash
6 lines
94 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ x$COVERALLS == xyes ]; then
|
||
|
coveralls --exclude php --exclude 3rdparty
|
||
|
fi
|