Created
September 16, 2016 17:19
-
-
Save rebornix/de37da278babaaa8c6a13a14feb0249d to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
pass=true | |
RED='\033[1;31m' | |
GREEN='\033[0;32m' | |
NC='\033[0m' | |
echo "Running Linters:" | |
# Run tslint and get the output and return code | |
tslint=$(gulp tslint) | |
ret_code=$? | |
# If it didn't pass, announce it failed and print the output | |
if [ $ret_code != 0 ]; then | |
printf "\n${RED}tslint failed:${NC}" | |
echo "$tslint\n" | |
pass=false | |
else | |
printf "${GREEN}tslint passed.${NC}\n" | |
fi | |
# If there were no failures, it is good to commit | |
if $pass; then | |
exit 0 | |
fi | |
exit 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment