Created
April 1, 2015 23:32
-
-
Save navitronic/59e01853823c7a484cb3 to your computer and use it in GitHub Desktop.
pre-push hook
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/sh | |
CMD="make php-cs" | |
# 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 "failed $CMD" | |
exit 1 | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment