Fix for #1655 : display french help

Since the manual had been translated (and updated), it should be displayed for french user.
This fix this problem reported as http://bugs.libreplan.org/show_bug.cgi?id=1655
This commit is contained in:
poum 2014-08-16 21:05:31 +02:00
parent 5b7f751cf1
commit 6151ca6ec3

View file

@ -125,6 +125,11 @@
<copy todir="src/main/webapp/help/it" failonerror="false">
<fileset dir="../doc/src/user/en/html"/>
</copy>
<exec executable="make" failifexecutionfails="false">
<arg value="-C"/>
<arg value="../doc/src/user/fr/"/>
<arg value="html"/>
</exec>
<copy todir="src/main/webapp/help/fr" failonerror="false">
<fileset dir="../doc/src/user/en/html"/>
</copy>