Skip to content

Instantly share code, notes, and snippets.

@leafnode
Created May 17, 2018 10:30
Show Gist options
  • Save leafnode/f09e0c119788a4680de538478faa8959 to your computer and use it in GitHub Desktop.
Save leafnode/f09e0c119788a4680de538478faa8959 to your computer and use it in GitHub Desktop.
pre-commit hook to check for debug calls
#!/bin/sh
echo "Checking for debug calls..."
if git-rev-parse --verify HEAD >/dev/null 2>&1; then
against=HEAD
else
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
for FILE in `git diff-index --name-status $against -- | grep '^A' | cut -c3-` ; do
grep -q -e 'dump(' -e 'print_r(' -e 'die(' $FILE
if [ $? -eq 0 ]
then
echo $FILE 'contains debug calls!'
exit 1
fi
done
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment