root / trunk / contrib / make-release.sh

Revision 1265, 473 bytes (checked in by gogo, 2 years ago)

Add a script to make the release archives.

Line 
1# Run this with bash from the root of your SVN working copy checkout of the trunk
2# it will dump int /tmp the archived release files
3# eg bash contrib/make-release.sh
4
5VER=0.96.1
6
7#
8#
9svn export $(pwd) /tmp/Xinha-$VER
10cd /tmp
11zip -r Xinha-$VER.zip /tmp/Xinha-$VER
12tar -cjvf Xinha-$VER.tar.bz2 /tmp/Xinha-$VER
13cd Xinha-$VER
14php contrib/compress_yui.php
15sleep 5
16cd ../
17zip -r Xinha-$Ver-Compressed.zip /tmp/Xinha-$VER
18tar -cjvf Xinha-$Ver-Compressed.tar.bz2 /tmp/Xinha-$VER
Note: See TracBrowser for help on using the browser.