]> git.phdru.name Git - git-scripts.git/blobdiff - hooks/post-merge
Feat(submodules/remove): Add option `-c`
[git-scripts.git] / hooks / post-merge
index 3bdcf5efbad5caee325885ee5029bf0c0ab5c55f..2df0670c3aa8126c5737e2a1af74b14d97c2e091 100755 (executable)
@@ -2,7 +2,7 @@
 
 # post-merge hook that compiles python files to byte code
 
-python2.7 -m compileall -q . &&
-python2.7 -O -m compileall -q .
+python    -m compileall -q -x '\.tox/' . &&
+python -O -m compileall -q -x '\.tox/' .
 
 exit 0