#!/bin/sh # post-checkout hook that compiles python files to byte code python2.7 -m compileall -q . && python2.7 -O -m compileall -q . exit 0