Browse Subversion Repository
Contents of /tags/version_0_6_4/make_release_package.sh
Parent Directory
| Revision Log
Revision 50 -
( show annotations)
( download)
( as text)
Fri Apr 1 15:48:24 2016 UTC
(8 years ago)
by toshinagata1964
File MIME type: text/x-sh
File size: 333 byte(s)
version 0.6.4
| 1 |
#!/bin/sh |
| 2 |
dt=`date +'%y%m%d'` |
| 3 |
(cd build/Deployment; zip -r Alchemusica_$dt.zip Alchemusica.app -x \*.DS_Store) |
| 4 |
# (cd ..; zip -r Alchemusica_src_$dt.zip Alchemusica -x \*.svn/\* -x _\* -x \*/_\* -x \*.DS_Store -x Alchemusica/build\* -x Alchemusica/\*.zip) |
| 5 |
# mv ../Alchemusica_src_$dt.zip ./ |
| 6 |
mv build/Deployment/Alchemusica_$dt.zip ./ |
|