From 26c11888240d87aba88c09437219e14e84ecae93 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Sat, 5 Feb 2011 04:00:35 +0000 Subject: [PATCH] Scripts: robustify mass git convert-ly. --- scripts/auxiliar/update-with-convert-ly.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/auxiliar/update-with-convert-ly.sh b/scripts/auxiliar/update-with-convert-ly.sh index 6063c21ee4..9bb48614d7 100755 --- a/scripts/auxiliar/update-with-convert-ly.sh +++ b/scripts/auxiliar/update-with-convert-ly.sh @@ -20,8 +20,10 @@ make cd $TOP_SRC_DIR ### update manuals -find Documentation/ -path 'Documentation/snippets' -prune \ - -o -name '*.itely' | xargs $BUILD_DIR/out/bin/convert-ly -e -d +find Documentation/ -path 'Documentation/snippets' -prune -o \ + -name '*.itely' | xargs $BUILD_DIR/out/bin/convert-ly -e -d ### update .ly files -find . -name '*.ly' | xargs $BUILD_DIR/out/bin/convert-ly -e -d +# don't look in . otherwise it'll find stuff in build/ ! +find Documentation/ input/ ly/ \ + -name '*.ly' | xargs $BUILD_DIR/out/bin/convert-ly -e -d -- 2.39.2