Build: Fix to not clean in imagegen on every build

Clarify some release prompts
This commit is contained in:
zzz
2016-05-01 20:32:14 +00:00
parent 33629d0744
commit 7a49b09b97

View File

@ -133,7 +133,7 @@
<attribute name="infile" /> <attribute name="infile" />
<attribute name="outfile" /> <attribute name="outfile" />
<sequential> <sequential>
<input message="Enter private signing key file:" addproperty="release.privkey" /> <input message="Enter sud/su2 private signing key file:" addproperty="release.privkey" />
<fail message="You must enter an existing file path." > <fail message="You must enter an existing file path." >
<condition> <condition>
<or> <or>
@ -197,13 +197,13 @@
</or> </or>
</condition> </condition>
</fail> </fail>
<input message="Enter key name (you@mail.i2p):" addproperty="release.signer.su3" /> <input message="Enter su3 key name (you@mail.i2p):" addproperty="release.signer.su3" />
<fail message="You must enter a name." > <fail message="You must enter a name." >
<condition> <condition>
<equals arg1="${release.signer.su3}" arg2=""/> <equals arg1="${release.signer.su3}" arg2=""/>
</condition> </condition>
</fail> </fail>
<input message="Enter key password for ${release.signer.su3}:" addproperty="release.password.su3" /> <input message="Enter su3 key password for ${release.signer.su3}:" addproperty="release.password.su3" />
<fail message="You must enter a password." > <fail message="You must enter a password." >
<condition> <condition>
<equals arg1="${release.password.su3}" arg2=""/> <equals arg1="${release.password.su3}" arg2=""/>
@ -297,7 +297,7 @@
</target> </target>
<target name="buildImagegen" depends="buildCore, buildJetty" > <target name="buildImagegen" depends="buildCore, buildJetty" >
<ant dir="apps/imagegen" target="all" /> <ant dir="apps/imagegen" target="build" />
<copy file="apps/imagegen/imagegen/build/imagegen.war" todir="build/" /> <copy file="apps/imagegen/imagegen/build/imagegen.war" todir="build/" />
</target> </target>