diff options
author | David Kastrup <dak@gnu.org> | 2015-05-28 13:45:16 +0200 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2015-05-29 14:52:32 +0200 |
commit | 590ab8fc6d1565e68809e3a2eb16e1ce01ef541e (patch) | |
tree | 2567e0c9bfe27343c753e56af0050427a0b08f18 /scripts | |
parent | e6ef0a8d2c0ba80813af87a592e3629b9938a823 (diff) |
Let scripts/auxiliar/update-with-convert-ly.sh pass any options to convert-ly
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auxiliar/update-with-convert-ly.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/auxiliar/update-with-convert-ly.sh b/scripts/auxiliar/update-with-convert-ly.sh index bb51d83e41..978fab4f55 100755 --- a/scripts/auxiliar/update-with-convert-ly.sh +++ b/scripts/auxiliar/update-with-convert-ly.sh @@ -20,10 +20,10 @@ cd $TOP_SRC_DIR ### update manuals find Documentation/ -path 'Documentation/snippets' -prune -o -name out -prune \ -o -name 'out-*' -prune -o -name '*.itely' -print \ - | xargs $BUILD_DIR/out/bin/convert-ly -e -d + | xargs $BUILD_DIR/out/bin/convert-ly -e -d "$@" ### update .ly files # don't look in . otherwise it'll find stuff in build/ ! find Documentation/ input/ ly/ -name out -prune -o -name 'out-*' -prune \ -o \( -name '*.ly' -o -name '*.ily' \) -print \ - | xargs $BUILD_DIR/out/bin/convert-ly -e -d + | xargs $BUILD_DIR/out/bin/convert-ly -e -d "$@" |