diff options
author | Oz Linden <oz@lindenlab.com> | 2018-09-06 15:57:25 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2018-09-06 15:57:25 -0400 |
commit | 050f9ead3b7509a5a03cb41492386414db15e5e0 (patch) | |
tree | 7e23df1b657e8392d871a124844b4ff84b4c32f0 /indra/lib | |
parent | fa1ad3f4df766e6047c2e819a97261400cd3ab7f (diff) |
add markers for non-package uses of viewer_manifest.py
Diffstat (limited to 'indra/lib')
-rwxr-xr-x | indra/lib/python/indra/util/llmanifest.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py index 9ab77414be..8904e72440 100755 --- a/indra/lib/python/indra/util/llmanifest.py +++ b/indra/lib/python/indra/util/llmanifest.py @@ -246,6 +246,8 @@ def main(extra=[]): touch = args.get('touch') if touch: print '================ Creating base package' + else: + print '================ Starting base copy' wm = LLManifest.for_platform(args['platform'], args.get('arch'))(args) wm.do(*args['actions']) # Store package file for later if making touched file. @@ -253,6 +255,8 @@ def main(extra=[]): if touch: print '================ Created base package ', wm.package_file base_package_file = "" + wm.package_file + else: + print '================ Finished base copy' # handle multiple packages if set # ''.split() produces empty list @@ -280,6 +284,8 @@ def main(extra=[]): args['dest'] = base_dest_template.format(package_id) if touch: print '================ Creating additional package for "', package_id, '" in ', args['dest'] + else: + print '================ Starting additional copy for "', package_id, '" in ', args['dest'] try: wm = LLManifest.for_platform(args['platform'], args.get('arch'))(args) wm.do(*args['actions']) @@ -289,7 +295,8 @@ def main(extra=[]): print '================ Created additional package ', wm.package_file, ' for ', package_id with open(base_touch_template.format(package_id), 'w') as fp: fp.write('set package_file=%s\n' % wm.package_file) - + else: + print '================ Finished additional copy "', package_id, '" in ', args['dest'] # Write out the package file in this format, so that it can easily be called # and used in a .bat file - yeah, it sucks, but this is the simplest... if touch: |