Flake8: oprava nekontrolování migrací v pre-commit
This commit is contained in:
parent
d725e3d8e4
commit
bb18c6ed31
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,11 @@ status=0
|
||||||
|
|
||||||
# select only changed python files which are not migrations
|
# select only changed python files which are not migrations
|
||||||
changed=`git diff --cached --name-only | grep 'py$' | grep -v 'migrations/[0-9]'`
|
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
|
git diff --unified=1 --cached HEAD -- $changed > $TMPDIFF
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue