Revision: 15285
          http://gate.svn.sourceforge.net/gate/?rev=15285&view=rev
Author:   ian_roberts
Date:     2012-01-31 18:18:17 +0000 (Tue, 31 Jan 2012)
Log Message:
-----------
Use <echo> instead of <propertyfile> (the minimal Ant used by the installer
doesn't support the latter task).

Modified Paths:
--------------
    teamware/trunk/install/build.xml

Modified: teamware/trunk/install/build.xml
===================================================================
--- teamware/trunk/install/build.xml    2012-01-31 18:15:43 UTC (rev 15284)
+++ teamware/trunk/install/build.xml    2012-01-31 18:18:17 UTC (rev 15285)
@@ -161,9 +161,11 @@
   <macrodef name="setTeamwareVersion">
     <sequential>
       <echo message="Recording current GATE Teamware version" />
-      <propertyfile file="${instanceDir}/gate-teamware.properties">
-        <entry key="version" value="${teamware.version}" />
-      </propertyfile>
+      <!-- I'd like to use <propertyfile> here but that isn't available
+           in the minimal Ant used by the installer -->
+      <echo file="${instanceDir}/gate-teamware.properties"
+        encoding="ISO-8859-1"
+        message="version=${teamware.version}" />
     </sequential>
   </macrodef>
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to