Worked on build script
This commit is contained in:
parent
a0d4b364c5
commit
4bec0983de
1 changed files with 13 additions and 7 deletions
20
build.xml
20
build.xml
|
@ -12,6 +12,14 @@
|
|||
|
||||
<target name="build">
|
||||
|
||||
<!-- Download other git repos -->
|
||||
<exec dir="${dir.mcp}" executable="cmd" osfamily="windows">
|
||||
<arg line="git.bat" />
|
||||
</exec>
|
||||
<exec dir="${dir.mcp}" executable="bash" osfamily="unix">
|
||||
<arg line="git.sh" />
|
||||
</exec>
|
||||
|
||||
<copy todir="${dir.development}">
|
||||
<fileset dir="../Minecraft Forge Latest/" />
|
||||
</copy>
|
||||
|
@ -22,19 +30,17 @@
|
|||
<exclude name=".git/**"/>
|
||||
<exclude name="**/*.xml"/>
|
||||
</fileset>
|
||||
<fileset dir="${dir.development}APIs">
|
||||
<exclude name=".git/**"/>
|
||||
<exclude name="**/*.xml"/>
|
||||
</fileset>
|
||||
|
||||
</copy>
|
||||
|
||||
<!-- Make all directories -->
|
||||
<mkdir dir="output" />
|
||||
|
||||
<!-- Download other git repos -->
|
||||
<exec dir="${dir.mcp}" executable="cmd" osfamily="windows">
|
||||
<arg line="git.bat" />
|
||||
</exec>
|
||||
<exec dir="${dir.mcp}" executable="bash" osfamily="unix">
|
||||
<arg line="git.sh" />
|
||||
</exec>
|
||||
|
||||
|
||||
|
||||
<!-- Replace version numbers -->
|
||||
|
|
Loading…
Reference in a new issue