From 8ed565a0a8bca06d2ce8ab58db831fda51c7991f Mon Sep 17 00:00:00 2001 From: emb <> Date: Thu, 5 Mar 2015 23:28:26 -0600 Subject: [PATCH] adding empty mamelist folder to package script --- Scripts/Package.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Scripts/Package.py b/Scripts/Package.py index af6e18c..099ff49 100644 --- a/Scripts/Package.py +++ b/Scripts/Package.py @@ -83,6 +83,9 @@ if args.build == 'full': collection_path = os.path.join(output_path, 'collections') copytree(common_path, output_path) copytree(os_path, output_path) + + mkdir_p(os.path.join(output_path, 'meta', 'mamelist')) + dirs = [d for d in os.listdir(collection_path) if os.path.isdir(os.path.join(collection_path, d))] for collection in dirs: if not collection.startswith('_'):