Title: [185062] trunk/Tools
Revision
185062
Author
[email protected]
Date
2015-06-01 10:13:26 -0700 (Mon, 01 Jun 2015)

Log Message

EWS provides misleading information for not applyable patches
https://bugs.webkit.org/show_bug.cgi?id=145307

Reviewed by Alexey Proskuryakov.

* Scripts/svn-apply: Die if there is no applyable diff in the patch.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (185061 => 185062)


--- trunk/Tools/ChangeLog	2015-06-01 17:01:22 UTC (rev 185061)
+++ trunk/Tools/ChangeLog	2015-06-01 17:13:26 UTC (rev 185062)
@@ -1,3 +1,12 @@
+2015-06-01  Csaba Osztrogonác  <[email protected]>
+
+        EWS provides misleading information for not applyable patches
+        https://bugs.webkit.org/show_bug.cgi?id=145307
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Scripts/svn-apply: Die if there is no applyable diff in the patch.
+
 2015-06-01  Alexey Proskuryakov  <[email protected]>
 
         Further tweak results of WebKit1.StringTruncator after r184965.

Modified: trunk/Tools/Scripts/svn-apply (185061 => 185062)


--- trunk/Tools/Scripts/svn-apply	2015-06-01 17:01:22 UTC (rev 185061)
+++ trunk/Tools/Scripts/svn-apply	2015-06-01 17:13:26 UTC (rev 185062)
@@ -123,6 +123,7 @@
 my @diffHashRefs = parsePatch(*ARGV);
 
 print "Parsed " . @diffHashRefs . " diffs from patch file(s).\n";
+die "No diff found." unless @diffHashRefs;
 
 my $preparedPatchHash = prepareParsedPatch($force, @diffHashRefs);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to