Add 'E Lucevan el stelle' for violin

This commit is contained in:
Andrew Miner
2026-05-04 18:58:42 -06:00
parent 096a8f56c7
commit 4ddb75c00d
4 changed files with 44 additions and 16 deletions
+1 -14
View File
@@ -3,7 +3,7 @@
# Constants ############################################################################################################
read -d  USAGE <<-END
USAGE: $0 <clean|compile|help|watch> (--view)
USAGE: $0 <clean|compile|help> (--view)
END
@@ -15,10 +15,6 @@ function cancel {
}
function check-dependencies {
if ! which -s "fswatch"; then
brew install fswatch
fi
if ! which -s "lilypond"; then
brew install lilypond
fi
@@ -61,14 +57,6 @@ function command-compile {
done
}
function command-watch {
CURRENT_DIR=$(dirname $0)
fswatch -r src/scores | egrep '\.ly$' --line-buffered | grep -v 'includes' --line-buffered | while read FILE; do
FILE=$(echo $FILE | sed 's@.*/src/scores/\(.*\)$@./src/scores/\1@')
compile-ly $FILE
done
}
# Initialization #######################################################################################################
check-dependencies
@@ -97,6 +85,5 @@ case "$COMMAND" in
clean) command-clean;;
compile) command-compile;;
help|-h|-?|--help) usage;;
watch) command-watch;;
*) cancel "Unrecognized command: $COMMAND"
esac