From: <pa...@us...> - 2007-04-06 22:07:56
|
Revision: 2481 http://svn.sourceforge.net/morphix/?rev=2481&view=rev Author: paul_c Date: 2007-04-06 15:07:52 -0700 (Fri, 06 Apr 2007) Log Message: ----------- Just to make life even easier for our glorious leader.... Modified Paths: -------------- trunk/scripts-main/package_all.sh Modified: trunk/scripts-main/package_all.sh =================================================================== --- trunk/scripts-main/package_all.sh 2007-04-06 21:52:05 UTC (rev 2480) +++ trunk/scripts-main/package_all.sh 2007-04-06 22:07:52 UTC (rev 2481) @@ -1,9 +1,18 @@ #!/bin/sh +if test ! -z $1 ; then + changelog="$1" +else + changelog=" burp.. Bump version" +fi + for dir in bare flux heavy icewm kde light matchbox do cd $dir - dch -i "$1" - dpkg-buildpackage -us + dch -i "$changelog" + dpkg-buildpackage -us -uc -rfakeroot cd .. done + +svn up -m "New package release !" + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |