X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=buildscripts%2Fmakelsr.py;h=2206e61eeb38f00084f4d87cdcf45fe38c57b620;hb=442a6cca387948c2cad3bb4e1d9d26df4666fa18;hp=ac206a2ea4ed215397380fff1960bf2609b355c3;hpb=cc79e83f84efde6842c402a5d1c8d909709e93e7;p=lilypond.git diff --git a/buildscripts/makelsr.py b/buildscripts/makelsr.py index ac206a2ea4..2206e61eeb 100755 --- a/buildscripts/makelsr.py +++ b/buildscripts/makelsr.py @@ -4,7 +4,7 @@ import os import os.path import shutil -dirs = ['ancient','chords','connecting','contemporary','expressive','guitar','parts','repeats','scheme','spacing','staff','text','vocal'] +dirs = ['ancient','chords','connecting','contemporary','expressive','education','guitar','parts','pitches','repeats','scheme','spacing','staff','text','vocal','other'] notsafe=[] try: @@ -27,7 +27,8 @@ def copy_dir_with_test(srcdir, destdir): src = os.path.join (srcdir, file) dest = os.path.join (destdir, file) copy_with_warning(src, dest) - s = os.system('lilypond -dsafe -dbackend=svg -o /tmp/lsrtest ' + dest) + os.system('convert-ly -e ' + dest) + s = os.system('lilypond -dno-print-pages -dsafe -o /tmp/lsrtest ' + dest) if s: notsafe.append(dest) @@ -49,7 +50,7 @@ for dir in dirs: ## copy in new files from LSR download copy_dir_with_test( srcdir, destdir ) ## copy in new files in source tree - copy_dir_with_test( os.path.join ('input', 'tolsr', dir), destdir ) + copy_dir_with_test( os.path.join ('input', 'new', dir), destdir ) file=open("lsr-unsafe.txt", 'w')