summaryrefslogtreecommitdiffstats
path: root/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.py')
-rwxr-xr-xbootstrap.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 7dfc543..291317f 100755
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -108,7 +108,11 @@ else:
if options.verbose:
print(' '.join(args))
-run(args)
+try:
+ run(args)
+except:
+ print 'Failure running:', args
+ raise
verbose = []
if options.verbose: