bootstrap: fail more gracefully if gcc isn't available
authorEvan Martin <martine@danga.com>
Fri, 28 Sep 2012 17:05:34 +0000 (10:05 -0700)
committerEvan Martin <martine@danga.com>
Tue, 23 Oct 2012 15:51:54 +0000 (08:51 -0700)
bootstrap.py

index 7dfc543..291317f 100755 (executable)
@@ -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: