From 054d5f17d023c061e8f8ecfde8c07c20b14008c2 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 8 Jan 2016 20:49:17 -0500 Subject: Be more concise --- cbc/cli/build.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cbc/cli/build.py b/cbc/cli/build.py index b31c45e..7523014 100755 --- a/cbc/cli/build.py +++ b/cbc/cli/build.py @@ -56,10 +56,9 @@ def main(): if args.python: python_version = ' '.join(['--python', args.python]) - print('CBC_HOME is {0}'.format(env.cbchome)) + print('CBC_HOME={0}'.format(env.cbchome)) # Perform build(s) for cbcfile in args.cbcfile: - print('Using cbc build configuration: {0}'.format(cbcfile)) # Ensure the working directory remains the same throughout. os.chdir(env.pwd) @@ -68,7 +67,7 @@ def main(): metadata.render_scripts() metadata.copy_patches() - print('Scripts written to {0}'.format(metadata.env.pkgdir)) + print('-> {0}'.format(metadata.env.pkgdir)) if args.no_build: continue -- cgit