[jbosstools-commits] JBoss Tools SVN: r23612 - trunk/build/results.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Jul 20 22:36:24 EDT 2010


Author: nickboldt
Date: 2010-07-20 22:36:24 -0400 (Tue, 20 Jul 2010)
New Revision: 23612

Modified:
   trunk/build/results/build.xml
Log:
add fully qualified path to location for template.file

Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml	2010-07-21 02:05:16 UTC (rev 23611)
+++ trunk/build/results/build.xml	2010-07-21 02:36:24 UTC (rev 23612)
@@ -124,7 +124,6 @@
 				               replace="\1"
 				               casesensitive="false"
 				               override="true" />
-
 				<if>
 					<and>
 						<isset property="JOB_NAME" />
@@ -177,7 +176,7 @@
 			<equals arg1="${template.file}" arg2="download-template.xml" />
 			<then>
 				<copy todir="${output.dir}" overwrite="true">
-					<fileset file="${template.file}" />
+					<fileset dir="${output.dir}" file="${template.file}" />
 					<mapper type="merge" to="download.xml" />
 					<filterchain>
 						<expandproperties />
@@ -206,7 +205,7 @@
 						<then>
 							<!-- use pre-existing snippet file -->
 							<copy todir="${output.dir}" overwrite="true">
-								<fileset file="${template.file.cleaned}.in" />
+								<fileset dir="${output.dir}" file="${template.file.cleaned}.in" />
 								<mapper type="merge" to="download-snippet.txt" />
 								<filterchain>
 									<expandproperties />
@@ -218,7 +217,7 @@
 							<!-- fall back to default template file -->
 							<var name="template.file" value="download-template.xml" />
 							<copy todir="${output.dir}" overwrite="true">
-								<fileset file="${template.file}" />
+								<fileset dir="${output.dir}" file="${template.file}" />
 								<mapper type="merge" to="download.xml" />
 								<filterchain>
 									<expandproperties />



More information about the jbosstools-commits mailing list