From 1db6406e08205c7bcf608ac6ed831b1e2ddcc447 Mon Sep 17 00:00:00 2001 From: Florent Date: Tue, 15 Apr 2014 10:41:44 +0200 Subject: [PATCH] Run tools/stale_pyc.py before local installation --- tools/local_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/local_install.sh b/tools/local_install.sh index aaf67b50..1831b8da 100755 --- a/tools/local_install.sh +++ b/tools/local_install.sh @@ -7,4 +7,6 @@ if [ -z "${PYTHON}" ]; then which python2.7 >/dev/null 2>&1 && PYTHON=$(which python2.7) fi +${PYTHON} "$(dirname $0)/stale_pyc.py" + exec "${PYTHON}" "$(dirname $0)/local_install.py" "$@"