[Pkg-mozext-commits] [adblock-plus] 391/464: Fixed previous commit: suppress output when the --quiet option is specified, not when it is missing

David Prévot taffit at moszumanska.debian.org
Tue Jul 22 20:44:36 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository adblock-plus.

commit 19cfe807fab57b9b029cb948bf06dc2bdf16f232
Author: Wladimir Palant <trev at adblockplus.org>
Date:   Thu Jul 4 14:43:16 2013 +0200

    Fixed previous commit: suppress output when the --quiet option is specified, not when it is missing
---
 build.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.py b/build.py
index 5eda204..16d40b7 100644
--- a/build.py
+++ b/build.py
@@ -378,9 +378,9 @@ def generateDocs(baseDir, scriptName, opts, args, type):
              '-x=js,jsm',
              os.path.join(baseDir, 'lib')]
   if quiet:
-    subprocess.check_call(command)
-  else:
     subprocess.check_output(command)
+  else:
+    subprocess.check_call(command)
 
 def runReleaseAutomation(baseDir, scriptName, opts, args, type):
   keyFile = None

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/adblock-plus.git



More information about the Pkg-mozext-commits mailing list