diff --git a/makeWeb.sh b/makeWeb.sh index 8b21f8a..e8a3e14 100755 --- a/makeWeb.sh +++ b/makeWeb.sh @@ -48,13 +48,18 @@ sed -e "s/@BUILD@/$buildno/" -e "s/@SUBTITLE@/$subtitle/" \ for item in intro do rm -f $webdir/$item.html - if [ -r $booke/$item.md ]; then - pandoc --from=markdown --to=html --output=$webdir/$item.html $booke/$item.md + if [ -r $bookedir/$item.md ]; then + pandoc --from=markdown --to=html --output=$webdir/$item.html $bookedir/$item.md else touch $webdir/$item.html fi done +# Copy in any htaccess. +if [ -r $masterbookedir/htaccess ]; then + cp $masterbookedir/htaccess $webdir/.htaccess +fi + # Copy in the book PDFs. Like the graphics, Midi etc. these are assumed # to be already generated. cp $1-*.pdf $webdir