From 593acbb843fdc3d6612fbccfd1d54bea01e55144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Wed, 25 May 2011 13:45:54 +0200 Subject: [PATCH] - run source services always verbose on "osc build" --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index 339531aa..fb4a5572 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -4724,7 +4724,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. # check for source services if not opts.noservice and not opts.noinit: p = Package('.') - r = p.run_source_services() + r = p.run_source_services(verbose=True) if r != 0: print >>sys.stderr, 'Source service run failed!' sys.exit(1)