Author: rwhitcomb
Date: Thu Dec 31 19:31:08 2020
New Revision: 1884996

URL: http://svn.apache.org/viewvc?rev=1884996&view=rev
Log:
Use a property to compute the build number, not a file.

Modified:
    pivot/trunk/build.xml

Modified: pivot/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/pivot/trunk/build.xml?rev=1884996&r1=1884995&r2=1884996&view=diff
==============================================================================
--- pivot/trunk/build.xml (original)
+++ pivot/trunk/build.xml Thu Dec 31 19:31:08 2020
@@ -89,10 +89,11 @@ limitations under the License.
 
     <!-- Dynamic properties -->
     <property name="release" value="apache-${ant.project.name}-${version}"/>
-    <exec executable="svn" dir="." output="svnlog">
+    <exec executable="svn" dir="." outputproperty="svn.info">
         <arg value="info"/>
     </exec>
-    <loadproperties srcFile="svnlog">
+    <loadproperties>
+        <propertyresource name="svn.info"/>
         <filterchain>
             <linecontains>
                 <contains value="Last Changed Rev:"/>


Reply via email to