File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,22 @@ mkdir $name
2222cp ../README.md $name /README
2323cp ../LICENSE* $name /
2424cp -a ../silhouette $name /
25- cp ../* .py ../* .inx ../Makefile $name /
26- cp ../* .sh ../* .rules ../* .png $name /
25+ cp ../* silhouette* .py ../* .inx $name /
26+
27+
28+ echo " ****************************************************************"
29+ echo " Build Windows Version (Y/n)?"
30+ read answer
31+ if [ " $answer " != " n" ]
32+ then
33+ mkdir -p out
34+ zip -r out/$name -winpackage_$VERSION .zip $name --exclude \* .pyc \* __pycache__\*
35+ zip -j out/$name -winpackage_$VERSION .zip win/*
36+ fi
37+
38+
39+ # add linux-specific content
40+ cp ../* .sh ../* .rules ../* .png ../Makefile $name /
2741
2842
2943echo " ****************************************************************"
You can’t perform that action at this time.
0 commit comments