]> git.phdru.name Git - git-scripts.git/blob - hooks/post-merge
3bdcf5efbad5caee325885ee5029bf0c0ab5c55f
[git-scripts.git] / hooks / post-merge
1 #!/bin/sh
2
3 # post-merge hook that compiles python files to byte code
4
5 python2.7 -m compileall -q . &&
6 python2.7 -O -m compileall -q .
7
8 exit 0