Update logging.sh

This commit is contained in:
Dennis Eichhorn 2017-09-25 13:13:21 +02:00 committed by GitHub
parent a3c63609c2
commit 8862eb7d0f

View File

@ -11,7 +11,7 @@ git diff --cached --name-only | while read FILE; do
if [[ "$FILE" =~ ^.+(php|js)$ ]]; then
RESULT=$(grep "console.log(" "$FILE")
if [ ! -z $RESULT ]; then
echo -e "\e[1;33m\tWarning, the commit contains a call to var_dump(). Commit was not aborted, however.\e[0m" >&2
echo -e "\e[1;33m\tWarning, the commit contains a call to console.log(). Commit was not aborted, however.\e[0m" >&2
fi
fi
done