diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-01-08 20:49:17 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-01-08 20:49:17 -0500 |
commit | 054d5f17d023c061e8f8ecfde8c07c20b14008c2 (patch) | |
tree | e42431df5190b5373edf7607cf68f4030628861a | |
parent | ee04489eeffd5efedfbc77baee133df2692dbe3c (diff) | |
download | cbc-1.3.3.tar.gz |
Be more concise1.3.3
-rwxr-xr-x | cbc/cli/build.py | 5 |
1 files 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 |