Author: trader
Date: 2010-03-15 17:14:33 -0700 (Mon, 15 Mar 2010)
New Revision: 14383
URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=14383
Modified:
trunk/installer/data/setup-db-common.xml
Log:
Minor tweaks based on code review: correct "unless" property, don't double-set property. Tested with the original test case.
Modified: trunk/installer/data/setup-db-common.xml
===================================================================
--- trunk/installer/data/setup-db-common.xml 2010-03-16 00:13:47 UTC (rev 14382)
+++ trunk/installer/data/setup-db-common.xml 2010-03-16 00:14:33 UTC (rev 14383)
@@ -22,9 +22,8 @@
<antcall target="create.datatmp"/>
</target>
- <target name="create.datatmp" unless="${data.dir}">
+ <target name="create.datatmp" unless="${has.data.dir}">
<mkdir dir="${install.dir}/data/tmp"/>
- <property name="data.dir" value="${install.dir}/data/tmp"/>
</target>
<target name="dbsetup-process-file">
|