Fix target generation for transposed booke web items.
This commit is contained in:
parent
08ca45a1cc
commit
441c321487
|
@ -29,6 +29,11 @@ title=$booke
|
|||
instrument=$3
|
||||
abc2xml=$dir/abc2xml/abc2xml.py
|
||||
|
||||
instrumentSuffix="${1##*-}"
|
||||
if [ "$1" != "$instrumentSuffix" ]; then
|
||||
basetunedir="${basetunedir}-${instrumentSuffix}"
|
||||
fi
|
||||
|
||||
buildno=`cat buildno.txt`
|
||||
# Remove trailing % added for Latex purposes.
|
||||
buildno=${buildno%%%}
|
||||
|
@ -41,7 +46,6 @@ fi
|
|||
if [ -n "$instrument" ]; then
|
||||
title="${title} ($instrument)"
|
||||
subtitle="${subtitle} ($instrument)"
|
||||
basetunedir="${basetunedir}-${instrument}"
|
||||
fi
|
||||
|
||||
mkdir -p $bookewebdir
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
# They go into web/tunes/<tunename>, or web/tunes-<instrument>/<tunename>.
|
||||
#
|
||||
|
||||
if [[ $# -lt 1 ]]; then
|
||||
echo "Usage: makeWebGraphics.sh <book dir name> [<instrument name>]"
|
||||
if [[ $# -ne 1 ]]; then
|
||||
echo "Usage: makeWebGraphics.sh <book dir name>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -15,10 +15,10 @@ booke=$dir/$1
|
|||
basewebdir=$dir/web
|
||||
basetunedir=$basewebdir/tunes
|
||||
graphicsdir=$dir/graphics/$1
|
||||
instrument=$2
|
||||
|
||||
if [ -n "$instrument" ]; then
|
||||
basetunedir="${basetunedir}-${instrument}"
|
||||
instrumentSuffix="${1##*-}"
|
||||
if [ "$1" != "$instrumentSuffix" ]; then
|
||||
basetunedir="${basetunedir}-${instrumentSuffix}"
|
||||
fi
|
||||
|
||||
# Now, for each tune, make the main tune and tune first line bitmaps.
|
||||
|
|
Loading…
Reference in New Issue