Changeset 641
- Timestamp:
- 04/29/07 11:11:46 (2 years ago)
- Files:
-
- trunk/src/main/resources/phing/build-stubbles.xml (modified) (1 diff)
- trunk/src/main/resources/phing/build.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/resources/phing/build-stubbles.xml
r640 r641 25 25 <echo>| Setting up build system |</echo> 26 26 <echo>----------------------------------</echo> 27 <input propertyname="project.new.name" promptChar=":">Please enter the name of your project</input> 27 28 <touch file="${project.basedir}/build.properties"/> 28 <move file="${project.basedir}/build-dist.xml" tofile="${project.basedir}/build.xml" overwrite="false"/> 29 <move file="${project.basedir}/build-dist.xml" tofile="${project.basedir}/build.xml" overwrite="false"> 30 <filterchain> 31 <expandproperties /> 32 </filterchain> 33 </move> 29 34 <move file="${project.basedir}/config/php/config-dist.php" tofile="${project.basedir}/config/php/config.php" overwrite="false"/> 30 35 </target> trunk/src/main/resources/phing/build.xml
r632 r641 1 1 <?xml version="1.0"?> 2 <project name=" YourProject" basedir="." default="main">2 <project name="${project.new.name}" basedir="." default="main"> 3 3 4 4 <!--
