[Phpbbproject-svn] SF.net SVN: phpbbproject:[313] trunk/build.xml
phpBB download manager, mainly aimed at MOD authors
Status: Planning
Brought to you by:
lord_le_brand
|
From: <lor...@us...> - 2014-10-22 19:25:40
|
Revision: 313
http://sourceforge.net/p/phpbbproject/svn/313
Author: lord_le_brand
Date: 2014-10-22 19:25:32 +0000 (Wed, 22 Oct 2014)
Log Message:
-----------
Target version detection in build file (hopefully)
Modified Paths:
--------------
trunk/build.xml
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2014-10-22 19:03:35 UTC (rev 312)
+++ trunk/build.xml 2014-10-22 19:25:32 UTC (rev 313)
@@ -21,8 +21,14 @@
</target>
<target name="build">
- <copy todir="${dir.output}">
- <fileset dir="target/3.0.12" />
+ <foreach param="targetversion" target="build_target">
+ <fileset dir="target"><type type="dir"/></fileset>
+ </foreach>
+ </target>
+
+ <target name="build_target">
+ <copy todir="${dir.output}/${targetversion}">
+ <fileset dir="target/${targetversion}" />
</copy>
</target>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|