[Hw4mdl-svn] SF.net SVN: hw4mdl: [158] trunk/moodle/bin/package.sh
Brought to you by:
jhlinder,
trollinger
From: <hu...@us...> - 2007-01-03 17:07:04
|
Revision: 158 http://svn.sourceforge.net/hw4mdl/?rev=158&view=rev Author: hugues Date: 2007-01-03 09:07:00 -0800 (Wed, 03 Jan 2007) Log Message: ----------- http://u.horizonwimba.com/bugzilla/show_bug.cgi?id=9983 - Inserts the revision number in the package name Modified Paths: -------------- trunk/moodle/bin/package.sh Modified: trunk/moodle/bin/package.sh =================================================================== --- trunk/moodle/bin/package.sh 2007-01-03 16:54:33 UTC (rev 157) +++ trunk/moodle/bin/package.sh 2007-01-03 17:07:00 UTC (rev 158) @@ -2,8 +2,13 @@ DEBUG=1 -VERSION=0.9-SNAPSHOT +SVN_URL_BASE=https://svn.sourceforge.net/svnroot/hw4mdl +SVN_URL_TRUNK=${SVN_URL_BASE}/trunk +SVN_URL_TAG=${SVN_URL_BASE}/tags/${SVN_TAG_PARAM} + +VERSION=0.9-SNAPSHOT_rev`svn info ${SVN_URL_BASE} | awk '/Revision/ { print $2;}'` + TARGET=liveclassroom #TARGET=liveclassroom, voicetool, pronto @@ -14,9 +19,6 @@ SVN_PASS_PARAM= SVN_TAG_PARAM=${TARGET}_${VERSION} -SVN_URL_BASE=https://svn.sourceforge.net/svnroot/hw4mdl -SVN_URL_TRUNK=${SVN_URL_BASE}/trunk -SVN_URL_TAG=${SVN_URL_BASE}/tags/${SVN_TAG_PARAM} if [ -n "$DEBUG" ]; then echo "Using SVN_TRUNK" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |