chiark / gitweb /
Revert "Stop excessive build output"
authorCiaran Gultnieks <ciaran@ciarang.com>
Tue, 19 Nov 2013 22:40:35 +0000 (22:40 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Tue, 19 Nov 2013 22:40:35 +0000 (22:40 +0000)
This reverts commit 7ca5955cac5816203522b6d2fe3e57879b648e5d.
Temporarily reverting because it's better, but somehow losing some
build error detail for the build logs that go to the wiki. Excessive
output is better than missing output for now.

fdroidserver/build.py

index 7ea322171b380ebb42f62f99c4910b0d368b1329..e724a6dba950e16e6e28bb9263f3ed7cc3ed18cb 100644 (file)
@@ -915,7 +915,7 @@ def main():
                 logfile = open(os.path.join(log_dir, app['id'] + '.log'), 'a+')
                 logfile.write(str(be))
                 logfile.close()
-                print "Could not build app %s due to BuildException: %s" % (app['id'], be.value)
+                print "Could not build app %s due to BuildException: %s" % (app['id'], be)
                 if options.stop:
                     sys.exit(1)
                 failed_apps[app['id']] = be