1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-05 09:18:06 +03:00
samba-mirror/script/git-hooks/pre-commit-script

20 lines
324 B
Plaintext
Raw Normal View History

#!/bin/sh
set -eu
#
# make emacs/magit work, cf
# https://github.com/magit/magit/issues/3419
#
unset GIT_LITERAL_PATHSPECS
gitdir=$(git rev-parse --show-toplevel)
if [ $? -ne 0 ] ; then
echo "git rev-parse --show-toplevel failed"
exit 1
fi
${gitdir}/script/git-hooks/check-trailing-whitespace || exit $?
exit 0