summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-16 20:51:00 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-11-16 20:51:00 +0000
commita527c584f895e38a00ce384a897d4393c880c442 (patch)
treeafaa25344dfa7772a3ec0a47e84e5aa7213a0069 /build.xml
parent8804a25f42851bbbf02972794f5d274e31add761 (diff)
downloadsemanticscuttle-a527c584f895e38a00ce384a897d4393c880c442.tar.gz
semanticscuttle-a527c584f895e38a00ce384a897d4393c880c442.tar.bz2
fix build.xml with default tag message and main version
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@555 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index bac7fda..4feef16 100644
--- a/build.xml
+++ b/build.xml
@@ -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>