Stop fixTexts.sh from rebuilding html files that didn't change.

develop
Alexander Gavrilov 2012-09-30 09:02:14 +04:00
parent bb39b2e45b
commit 47e04863eb
1 changed files with 15 additions and 4 deletions

@ -1,6 +1,17 @@
#!/bin/bash #!/bin/bash
cd `dirname $0`
function process() {
if [ "$1" -nt "$2" ]; then
rst2html "$1" "$2"
else
echo "$2 - up to date."
fi
}
# this script is used for easy testing of the rst documentation files. # this script is used for easy testing of the rst documentation files.
rst2html Readme.rst Readme.html process Readme.rst Readme.html
rst2html Compile.rst Compile.html process Compile.rst Compile.html
rst2html Lua\ API.rst Lua\ API.html process Lua\ API.rst Lua\ API.html
rst2html Contributors.rst > Contributors.html process Contributors.rst Contributors.html