[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

abarth at webkit.org abarth at webkit.org
Fri Jan 21 14:52:38 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit ff1e225bb8a73daa6244d46b177290b3fb06ea31
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 3 19:33:56 2011 +0000

    2011-01-03  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Simon Fraser.
    
            webkit-patch should only hide update output if --quiet
            https://bugs.webkit.org/show_bug.cgi?id=51838
    
            As requested by smfr.
    
            * Scripts/webkitpy/tool/steps/update.py:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74914 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index 8f15a03..6b8523c 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,5 +1,16 @@
 2011-01-03  Adam Barth  <abarth at webkit.org>
 
+        Reviewed by Simon Fraser.
+
+        webkit-patch should only hide update output if --quiet
+        https://bugs.webkit.org/show_bug.cgi?id=51838
+
+        As requested by smfr.
+
+        * Scripts/webkitpy/tool/steps/update.py:
+
+2011-01-03  Adam Barth  <abarth at webkit.org>
+
         Reviewed by David Levin.
 
         commit-queue shouldn't reject patches twice if two bots process the same patch
diff --git a/Tools/Scripts/webkitpy/tool/steps/update.py b/Tools/Scripts/webkitpy/tool/steps/update.py
index cd1d4d8..036c46d 100644
--- a/Tools/Scripts/webkitpy/tool/steps/update.py
+++ b/Tools/Scripts/webkitpy/tool/steps/update.py
@@ -36,10 +36,11 @@ class Update(AbstractStep):
     def options(cls):
         return AbstractStep.options() + [
             Options.update,
+            Options.quiet,
         ]
 
     def run(self, state):
         if not self._options.update:
             return
         log("Updating working directory")
-        self._tool.executive.run_and_throw_if_fail(self._tool.port().update_webkit_command(), quiet=True)
+        self._tool.executive.run_and_throw_if_fail(self._tool.port().update_webkit_command(), quiet=self._options.quiet)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list