OSDN Git Service

release.sh: add .xz format
authorMartin Renold <martinxyz@gmx.ch>
Mon, 10 Oct 2011 18:37:41 +0000 (20:37 +0200)
committerMartin Renold <martinxyz@gmx.ch>
Mon, 10 Oct 2011 18:37:41 +0000 (20:37 +0200)
release.sh

index a2e7b00..5aeefc4 100755 (executable)
@@ -22,7 +22,9 @@ rm release.sh
 cd ..
 
 filename=$orig/mypaint-$version.tar.bz2
+filename2=$orig/mypaint-$version.tar.xz
 tar -cvjf $filename mypaint-$version
+tar -cvJf $filename2 mypaint-$version
 
 cd $d
 scons debug=true
@@ -31,6 +33,7 @@ tests/test_performance.py -a -c 1
 tests/test_memory_leak.py -a -e
 
 ls -sSh $filename
+ls -sSh $filename2
 
 echo "you can tag this release with 'git tag -s v$version'"