| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function texinfo_updateOutputFiles { |
| |
| |
| |
| |
| if [[ ! -a ${MANUAL_BASEFILE}.${MANUAL_EXTENSION} ]];then |
| return |
| fi |
| |
| |
| if [[ ! -d $(dirname $MANUAL_OUTPUT_BASEFILE) ]];then |
| mkdir -p $(dirname $MANUAL_OUTPUT_BASEFILE) |
| fi |
| |
| |
| cli_printMessage "`gettext "Updating output files"`" --as-banner-line |
| |
| |
| |
| |
| pushd ${TCAR_WORKDIR} > /dev/null |
| |
| texinfo_updateOutputFileInfo |
| texinfo_updateOutputFileXhtml |
| texinfo_updateOutputFileXml |
| texinfo_updateOutputFileDocbook |
| texinfo_updateOutputFilePdf |
| texinfo_updateOutputFilePlaintext |
| |
| |
| popd > /dev/null |
| |
| } |