Author: nextgens
Date: 2006-04-06 12:08:47 +0000 (Thu, 06 Apr 2006)
New Revision: 8480
Modified:
trunk/apps/installer/build.xml
Log:
installer: don't ask why it produces an npe on windows without :< I dunno :$
... shouldn't matter anyway as ant properties are immuable
Modified: trunk/apps/installer/build.xml
===================================================================
--- trunk/apps/installer/build.xml 2006-04-06 10:41:00 UTC (rev 8479)
+++ trunk/apps/installer/build.xml 2006-04-06 12:08:47 UTC (rev 8480)
@@ -140,6 +140,8 @@
</replace>
<copy file="${basedir}/freenet-cvs-snapshot.jar"
tofile="${installDir}/freenet-cvs-snapshot.jar" failonerror="false"/>
<copy file="${basedir}/freenet-ext.jar"
tofile="${installDir}/freenet-ext.jar" failonerror="false"/>
+ <property name="freenet-cvs-snapshot.location" value="true"/>
+ <property name="freenet-ext.location" value="true"/>
<copy file="${freenet-cvs-snapshot.location}"
tofile="${installDir}/freenet-cvs-snapshot.jar" failonerror="false"/>
<copy file="${freenet-ext.location}"
tofile="${installDir}/freenet-ext.jar" failonerror="false"/>
</target>