Title: [171220] trunk/Tools
Revision
171220
Author
[email protected]
Date
2014-07-18 07:12:26 -0700 (Fri, 18 Jul 2014)

Log Message

Fix -v|--verbose option in sort-export-file script.
https://bugs.webkit.org/show_bug.cgi?id=135043

Patch by Renato Nagy <[email protected]> on 2014-07-18
Reviewed by Tim Horton.

-v|--verbose option does not work. Option added to getOptionsResult.

* Scripts/sort-export-file:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (171219 => 171220)


--- trunk/Tools/ChangeLog	2014-07-18 13:41:06 UTC (rev 171219)
+++ trunk/Tools/ChangeLog	2014-07-18 14:12:26 UTC (rev 171220)
@@ -1,3 +1,14 @@
+2014-07-18  Renato Nagy  <[email protected]>
+
+        Fix -v|--verbose option in sort-export-file script.
+        https://bugs.webkit.org/show_bug.cgi?id=135043
+
+        Reviewed by Tim Horton.
+
+        -v|--verbose option does not work. Option added to getOptionsResult.
+
+        * Scripts/sort-export-file:
+
 2014-07-18  Filip Pizlo  <[email protected]>
 
         Really remove dependency on ShellQuote.

Modified: trunk/Tools/Scripts/sort-export-file (171219 => 171220)


--- trunk/Tools/Scripts/sort-export-file	2014-07-18 13:41:06 UTC (rev 171219)
+++ trunk/Tools/Scripts/sort-export-file	2014-07-18 14:12:26 UTC (rev 171220)
@@ -39,6 +39,7 @@
 
 my $getOptionsResult = GetOptions(
     'h|help' => \$shouldShowHelp,
+    'v|verbose' => \$shouldBeVerbose,
     'w|warnings!' => \$shouldPrintWarnings,
 );
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to