From bb18c6ed3182e56f8e1613eac53f9f93a1acf6c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Koci=C3=A1n?= Date: Tue, 8 Nov 2016 10:54:00 +0100 Subject: [PATCH] =?UTF-8?q?Flake8:=20oprava=20nekontrolov=C3=A1n=C3=AD=20m?= =?UTF-8?q?igrac=C3=AD=20v=20pre-commit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _git_hooks/pre-commit | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_git_hooks/pre-commit b/_git_hooks/pre-commit index 664a06ce..f78840d4 100755 --- a/_git_hooks/pre-commit +++ b/_git_hooks/pre-commit @@ -10,6 +10,11 @@ status=0 # select only changed python files which are not migrations changed=`git diff --cached --name-only | grep 'py$' | grep -v 'migrations/[0-9]'` +if [ -z $changed ] ; then + # Nothing to check. Note the exit is necessary -- we would not pass any + # paths to git diff below and it would output the diff unfiltered. + exit 0 +fi git diff --unified=1 --cached HEAD -- $changed > $TMPDIFF