I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 77d45e7a authored by zzz's avatar zzz
Browse files

stub for windows gettext script

parent 45a59f00
No related branches found
No related tags found
No related merge requests found
......@@ -75,11 +75,17 @@
<ant target="war" />
<!-- Update the messages_*.po files.
We need to supply something for windows, and then change the fail property to true,
or else not run this on windows -->
<exec executable="sh" failifexecutionfails="false" >
We need to supply the bat file for windows, and then change the fail property to true -->
<exec executable="sh" osfamily="unix" failifexecutionfails="false" >
<arg value="./bundle-messages.sh" />
</exec>
<exec executable="sh" osfamily="mac" failifexecutionfails="false" >
<arg value="./bundle-messages.sh" />
</exec>
<exec executable="cmd" osfamily="windows" failifexecutionfails="false" >
<arg value="/c" />
<arg value="bundle-messages.bat" />
</exec>
<!-- jar again to get the latest messages_*.class files -->
<jar destfile="./build/routerconsole.jar" basedir="./build/obj" includes="**/*.class" update="true" />
</target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment