X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=add-pubkey%2Fpost-checkout;h=19ac074d0a08236c8a7b030b80b49f48b8b06882;hb=2c654e316392a8b3523ea0495902372d54548e1c;hp=ae91c71b72585c2504a7b47291b669d44912304e;hpb=4760314f775002a11be872bc8c7e9cbd55af321c;p=git-scripts.git diff --git a/add-pubkey/post-checkout b/add-pubkey/post-checkout index ae91c71..19ac074 100755 --- a/add-pubkey/post-checkout +++ b/add-pubkey/post-checkout @@ -1,19 +1,18 @@ #!/bin/sh # post-checkout hook that compiles python files to byte code -# if branch was changed or remove byte code files for a specific branch +# if branch was changed or removes byte code files for a specific branch prev_HEAD="$1" new_HEAD="$2" new_branch="$3" if [ \( "$new_branch" = 1 \) ]; then - phd_pubkey_HEAD="`git show-ref --hash refs/heads/phd-pubkey`" - if [ "$new_HEAD" = "$phd_pubkey_HEAD" ]; then + if [ "$new_HEAD" = "`git rev-parse phd-pubkey`" ]; then git clean -d -f -q else - python2.7 -m compileall -q . && - python2.7 -O -m compileall -q . + python -m compileall -q -x '\.tox/.+' . && + python -O -m compileall -q -x '\.tox/.+' . fi fi