-
-
Save ANtlord/8602f3653ea42d8b34ed656671daa88e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#COMMAND='/usr/local/bin/flake8 --config=/etc/flake8/.flake8' | |
COMMAND='/home/antlord/.pyenv/shims/python -m flake8 --config=/media/storage/develop/h4r-platform/.flake8' | |
TEMPDIR=`mktemp -d` | |
while read oldrev newrev refname; do | |
files=`git diff --name-only ${oldrev} ${newrev}` | |
for file in ${files}; do | |
object=`git ls-tree --full-name -r ${newrev} | egrep "(\s)${file}\$" | awk '{ print $3 }'` | |
if [ -z ${object} ]; then continue; fi | |
mkdir -p "${TEMPDIR}/`dirname ${file}`" &> /dev/null | |
git cat-file blob ${object} > ${TEMPDIR}/${file} | |
done; | |
done | |
# Change the filename here if your flake8 configuration | |
# has a different name. | |
${COMMAND} ${TEMPDIR} | |
STATUS=$? | |
rm -rf ${TEMPDIR} &> /dev/null | |
echo status $STATUS | |
exit ${STATUS} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment