From 39e7a8e9833986f4cb6bbf1767aa4d86d5b672e0 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Tue, 23 Jan 2007 12:13:23 -0800 Subject: [PATCH] Update makelsr script. --- buildscripts/makelsr.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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) -- 2.39.2