From: Graham Percival Date: Tue, 23 Jan 2007 20:13:23 +0000 (-0800) Subject: Update makelsr script. X-Git-Tag: release/2.11.14-1~13^2~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=39e7a8e9833986f4cb6bbf1767aa4d86d5b672e0;p=lilypond.git Update makelsr script. --- diff --git a/buildscripts/makelsr.py b/buildscripts/makelsr.py index 4a89282953..3f70827299 100755 --- a/buildscripts/makelsr.py +++ b/buildscripts/makelsr.py @@ -10,16 +10,20 @@ try: in_dir = sys.argv[1] except: print "Please specify input_file." - exit + sys.exit() for dir in dirs: srcdir = os.path.join (in_dir, dir) - destdir = os.path.join (os.getcwd(), 'lsr', dir) + destdir = os.path.join ('input', 'lsr', dir) + if not(os.path.isdir(destdir)): + print "Please run this script from the head of the source tree," + print " and/or check that you have the right categories." + sys.exit() file_names = os.listdir (destdir) for file in file_names: if (file.endswith ('.ly')): - if (file[:3] != 'AAA'): # or whatever we use to denote the first file + if (file[:3] != 'AAA'): os.remove( os.path.join(destdir,file) ) file_names = os.listdir (in_dir + dir)