summaryrefslogtreecommitdiffstatshomepage
path: root/build.xml
diff options
context:
space:
mode:
authorGravatar cweiske2009-11-13 23:17:15 +0000
committerGravatar cweiske2009-11-13 23:17:15 +0000
commit0b4ae19411d4eee1ee4b1fd8b77df6be66e22b41 (patch)
tree94ad38ba707b07661575954e3f0b68aa0f01cccd /build.xml
parent51afa10f8a25d1c23239cec853693c8686b2a02b (diff)
downloadscuttle-0b4ae19411d4eee1ee4b1fd8b77df6be66e22b41.tar.gz
scuttle-0b4ae19411d4eee1ee4b1fd8b77df6be66e22b41.zip
fix sfdistfilename
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@544 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 38a9764..986741b 100644
--- a/build.xml
+++ b/build.xml
@@ -9,7 +9,8 @@
<property file="build.properties" />
<property name="version" value="0.95" />
- <property name="distfile" value="dist/${phing.project.name}-${version}.zip" />
+ <property name="zipfile" value="${phing.project.name}-${version}.zip" />
+ <property name="distfile" value="dist/${zipfile}" />
<property name="sfproject" value="SemanticScuttle" />
<property name="sffilepath" value="s/se/semanticscuttle/" />
@@ -55,7 +56,7 @@
<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}/${distfile}"/>
+ <copy file="${distfile}" tofile="dist/deploy-sf/v${version}/${zipfile}"/>
<!-- test
<exec command="rsync -av dist/deploy-sf/ /tmp/test/" escape="false" />
-->