aboutsummaryrefslogtreecommitdiff
path: root/cbc
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunk@stsci.edu>2016-01-08 20:49:17 -0500
committerJoseph Hunkeler <jhunk@stsci.edu>2016-01-08 20:49:17 -0500
commit054d5f17d023c061e8f8ecfde8c07c20b14008c2 (patch)
treee42431df5190b5373edf7607cf68f4030628861a /cbc
parentee04489eeffd5efedfbc77baee133df2692dbe3c (diff)
downloadcbc-054d5f17d023c061e8f8ecfde8c07c20b14008c2.tar.gz
Be more concise1.3.3
Diffstat (limited to 'cbc')
-rwxr-xr-xcbc/cli/build.py5
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