summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-01-13 01:00:55 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2015-01-13 01:00:55 -0800
commitf73abe6849bc4534ce139166f11d8f98a59dc7b5 (patch)
treef0dc2f7949af5975b36dfc316b708bb9636e23fa /bin
parentfa67d695851878f0601afdfe1660b84829678b50 (diff)
parent9db967be9827d44150a840f52ecd1e0f28b5bd4e (diff)
downloadspack-f73abe6849bc4534ce139166f11d8f98a59dc7b5.tar.gz
spack-f73abe6849bc4534ce139166f11d8f98a59dc7b5.tar.bz2
spack-f73abe6849bc4534ce139166f11d8f98a59dc7b5.tar.xz
spack-f73abe6849bc4534ce139166f11d8f98a59dc7b5.zip
Merge branch 'features/dep-graph' into develop
Diffstat (limited to 'bin')
-rwxr-xr-xbin/spack10
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/spack b/bin/spack
index b345a5079d..626d9d9d11 100755
--- a/bin/spack
+++ b/bin/spack
@@ -103,7 +103,7 @@ if args.insecure:
# Try to load the particular command asked for and run it
command = spack.cmd.get_command(args.command)
try:
- command(parser, args)
+ return_val = command(parser, args)
except SpackError, e:
if spack.debug:
# In debug mode, raise with a full stack trace.
@@ -116,3 +116,11 @@ except SpackError, e:
except KeyboardInterrupt:
sys.stderr.write('\n')
tty.die("Keyboard interrupt.")
+
+# Allow commands to return values if they want to exit with some ohter code.
+if return_val is None:
+ sys.exit(0)
+elif isinstance(return_val, int):
+ sys.exit(return_val)
+else:
+ tty.die("Bad return value from command %s: %s" % (args.command, return_val))