From 7308f331ffd5ae6bc3914665c155ed440591060f Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Mon, 7 Mar 2016 09:39:34 -0800 Subject: [PATCH] parameterize the --resources to copy at build time --- tldp/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tldp/config.py b/tldp/config.py index de4707d..c55bf90 100644 --- a/tldp/config.py +++ b/tldp/config.py @@ -55,6 +55,9 @@ def collectconfiguration(tag, argv): ap.add_argument('--skip', default=[], action='append', type=str, help='skip this stem during processing') + ap.add_argument('--resources', + default=['images', 'resources'], action='append', type=str, + help='subdirs to copy during build [%(default)s]') ap.add_argument('--sourcedir', '--source-dir', '--source-directory', '-s', action='append', default='', type=arg_isdirectory,