Vault/.utility/build.sh

9 lines
167 B
Bash
Raw Normal View History

#!/bin/bash
if [[ "$TRAVIS_REPO_SLUG" != "MilkBowl/Vault" ]]
then
echo 'Travis can only publish docs for release builds.'
return 0
fi
mvn test
2015-01-04 07:08:10 +01:00
exit $?