Mercurial > dottes
changeset 651:4e92928fcfc2
Enable a tune book to have a htaccess file, copied to .htaccess in web.
author | Jim Hague <jim.hague@acm.org> |
---|---|
date | Mon, 21 Nov 2016 21:57:15 +0000 |
parents | 9982077ac9b2 |
children | 4ca0ff535c7d |
files | makeWeb.sh |
diffstat | 1 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/makeWeb.sh Thu Nov 10 00:47:55 2016 +0000 +++ b/makeWeb.sh Mon Nov 21 21:57:15 2016 +0000 @@ -48,13 +48,18 @@ 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