Skip to content

Commit

Permalink
bootstrap: fail more gracefully if gcc isn't available
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed Oct 23, 2012
1 parent 56f1ffc commit 13b8aff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ def run(*args, **kwargs):
if options.verbose:
print(' '.join(args))

run(args)
try:
run(args)
except:
print 'Failure running:', args
raise

verbose = []
if options.verbose:
Expand Down

0 comments on commit 13b8aff

Please sign in to comment.