view makeAll.sh @ 217:a8a46fd79d5c

Fix up problems in Horn in F transposition. 1. Ensure makeWeb.sh gets its second parameter quoted, to allow for spaces in it. 2. Don't forget to copy the component text items into the horn dir. 3. Fix removing transposition tag from page title.
author Jim Hague <jim.hague@laicatc.com>
date Wed, 20 Feb 2013 13:45:58 +0000
parents 64b84dea3337
children 0ef955669a9a
line wrap: on
line source

#!/bin/bash
#
# Build all forms of the Booke.

if [ $# != 1 ]; then
    echo "Usage: makeAll.sh <book dir name>"
    exit 1
fi

makeABooke()
{
    ./makeGraphics.sh "$1"
    ./makeBookeA5.sh "$1"
    ./makeBookeA4.sh "$1"
    ./makeWebItems.sh "$1"
    ./makeWeb.sh "$1" "$2"
}

makeABooke $1

./makeCello.sh $1
makeABooke $1-Cello cello

./makeHornInF.sh $1
makeABooke $1-HornInF "horn in F"