summaryrefslogtreecommitdiff
path: root/indra/lib
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2018-09-06 15:15:16 -0400
committerOz Linden <oz@lindenlab.com>2018-09-06 15:15:16 -0400
commitfa1ad3f4df766e6047c2e819a97261400cd3ab7f (patch)
tree473baea084a0b6d4b2edfc47160c86d68a545de1 /indra/lib
parent10f2101515fe8ba230848cce41faaf7613c9b6d8 (diff)
make start and end messages for packages more prominentt
Diffstat (limited to 'indra/lib')
-rwxr-xr-xindra/lib/python/indra/util/llmanifest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py
index 6919419953..9ab77414be 100755
--- a/indra/lib/python/indra/util/llmanifest.py
+++ b/indra/lib/python/indra/util/llmanifest.py
@@ -245,13 +245,13 @@ def main(extra=[]):
# Build base package.
touch = args.get('touch')
if touch:
- print 'Creating base package'
+ print '================ Creating base package'
wm = LLManifest.for_platform(args['platform'], args.get('arch'))(args)
wm.do(*args['actions'])
# Store package file for later if making touched file.
base_package_file = ""
if touch:
- print 'Created base package ', wm.package_file
+ print '================ Created base package ', wm.package_file
base_package_file = "" + wm.package_file
# handle multiple packages if set
@@ -279,14 +279,14 @@ def main(extra=[]):
args['sourceid'] = os.environ.get(package_id + "_sourceid")
args['dest'] = base_dest_template.format(package_id)
if touch:
- print 'Creating additional package for "', package_id, '" in ', args['dest']
+ print '================ Creating additional package for "', package_id, '" in ', args['dest']
try:
wm = LLManifest.for_platform(args['platform'], args.get('arch'))(args)
wm.do(*args['actions'])
except Exception as err:
sys.exit(str(err))
if touch:
- print 'Created additional package ', wm.package_file, ' for ', package_id
+ 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)