Created
February 11, 2014 10:33
-
-
Save x1a0/8932553 to your computer and use it in GitHub Desktop.
Run test before pushing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
CMD="sbt test" | |
# Check if we actually have commits to push | |
commits=`git log @{u}..` | |
if [ -z "$commits" ]; then | |
exit 0 | |
fi | |
$CMD | |
RESULT=$? | |
if [ $RESULT -ne 0 ]; then | |
echo -e "\e[1m\e[31mFailed $CMD\e[0m\e[21m" | |
exit 1 | |
fi | |
echo -e "\e[1m\e[32mAll Tests passed!\e[0m\e[21m" | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment