Created a zip containing all mods
I only get credit for own download per person per so many days. So it makes no point to force users to download each file one at a time.
This commit is contained in:
parent
e775882aa0
commit
774df79686
1 changed files with 7 additions and 3 deletions
10
build.xml
10
build.xml
|
@ -4,11 +4,11 @@
|
|||
|
||||
<property file="build.properties" />
|
||||
<property environment="env" />
|
||||
<property name="file.core" value="Dark:CoreMachine_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.jar" />
|
||||
<property name="file.fm" value="Dark:FluidMechanics_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.jar" />
|
||||
<property name="file.core" value="Dark:CoreMachine_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.jar"/>
|
||||
<property name="file.fm" value="Dark:FluidMechanics_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.jar">
|
||||
<property name="file.al" value="Dark:AssemblyLine_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.jar" />
|
||||
<property name="file.ft" value="Dark:FarmTech_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.jar" />
|
||||
<property name="file.gs" value="Dark:GreaterSecurity_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.jar" />
|
||||
<property name="file.gs" value="Dark:GreaterSecurity_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.jar"/> <property name="file.all" value="DarkBoxSet_v${version.mod.major}.${version.mod.minor}.${version.mod.revis}.${env.BUILD_NUMBER}.zip"/>
|
||||
|
||||
<target name="build">
|
||||
|
||||
|
@ -125,7 +125,11 @@
|
|||
<jar destfile="output/${file.gs}">
|
||||
<fileset dir="gs" />
|
||||
</jar>
|
||||
<zip destfile="${file.all}">
|
||||
<fileset dir="output/*" />
|
||||
</zip>
|
||||
|
||||
<copy todir="output" file="build.properties" />
|
||||
<copy todir="output" file="${file.all}" />
|
||||
</target>
|
||||
</project>
|
||||
|
|
Loading…
Reference in a new issue