I have the following pre-commit hook to use JavaScript Lint for checking JavaScript files before committing:
#!/bin/env bash
REPOS="$1"
TXN="$2"
ECHO=/bin/echo
GREP=/bin/grep
SED=/bin/sed
SVN=/usr/bin/svn
SVNLOOK=/usr/bin/svnlook
FILES_CHANGED=`$SVNLOOK changed -r$TXN $REPOS | $SED -e "s/^....//g"`
JSL=/usr/local/bin/jsl
JSL_CONF=/usr/local/etc/jsl.conf
for FILE in $FILES_CHANGED
do
if $ECHO $FILE | $GREP "\.js$"
then
$SVN cat -r$TXN file://$REPOS/$FILE | $JSL -conf $JSL_CONF -stdin 1>&2
JSL_ERROR_CODE=$?
if [ $JSL_ERROR_CODE != 0 ]
then
exit $JSL_ERROR_CODE
fi
fi
done
# If we got here, nothing is wrong.
exit 0
This code works locally as follows: ./pre-commit /my/svn/repo/location 6781 # the number is the transaction number
BUT it doesn't error correctly on svn commit.
I have already accounted for:
- There being no $PATH, I explicitly set all command paths.
- I am catching the correct error code from the jsl command for exit.
- I am pushing STDOUT to STDERR for the jsl command so it will be displayed in the commit fail.
What am I missing?
Yours,
Trevor