Only .pyc files are included in the zip package.

Since it's "freezed" it doesn't make any sense to
include .py files.


git-svn-id: https://callirhoe.googlecode.com/svn/branches/phantome@206 81c8bb96-aa45-f2e2-0eef-c4fa4a15c6df
This commit is contained in:
ph4ntome@gmail.com 2014-11-02 11:38:01 +00:00
parent 926cf96177
commit 8a1b4f9d74

View File

@ -8,6 +8,7 @@ make_archive() {
for i in `find $tempdir -type f -name "*.py" | grep -v "__init__"`
do
python2.7 -m py_compile $i
rm $i
done
cd $tempdir
zip -q -r $curdir/$base.zip *