diff options
-rw-r--r-- | build.xml | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -8,6 +8,7 @@ --> <property file="build.properties" /> + <property name="version-m" value="0.95" /> <property name="version" value="0.95.1" /> <property name="zipfile" value="${phing.project.name}-${version}.zip" /> <property name="distfile" value="dist/${zipfile}" /> @@ -65,8 +66,8 @@ > <delete dir="dist/deploy-sf" /><!-- make empty --> <mkdir dir="dist/deploy-sf" /> - <mkdir dir="dist/deploy-sf/v${version}" /> - <copy file="${distfile}" tofile="dist/deploy-sf/v${version}/${zipfile}"/> + <mkdir dir="dist/deploy-sf/v${version-m}" /> + <copy file="${distfile}" tofile="dist/deploy-sf/v${version-m}/${zipfile}"/> <!-- test <exec command="rsync -av dist/deploy-sf/ /tmp/test/" escape="false" /> --> @@ -83,7 +84,7 @@ description="create the svn tag for the current version" > <exec - command="svn cp ${svnpath}trunk ${svnpath}/tags/${version}" + command="svn cp ${svnpath}trunk ${svnpath}/tags/${version} -m 'tag version ${version}'" escape="false" checkreturn="true" /> </target> |