Now make_pkg includes main script's .pyc too.

git-svn-id: https://callirhoe.googlecode.com/svn/branches/phantome@205 81c8bb96-aa45-f2e2-0eef-c4fa4a15c6df
This commit is contained in:
ph4ntome@gmail.com 2014-11-02 07:22:00 +00:00
parent 1fb45c2d81
commit 926cf96177

View File

@ -5,7 +5,7 @@ make_archive() {
base="$1"
tempdir="$2"
curdir=`pwd`
for i in `find $tempdir -type f -name "*.py" | grep -v "__"`
for i in `find $tempdir -type f -name "*.py" | grep -v "__init__"`
do
python2.7 -m py_compile $i
done