Title: [228037] trunk/Tools
Revision
228037
Author
commit-qu...@webkit.org
Date
2018-02-02 16:53:51 -0800 (Fri, 02 Feb 2018)

Log Message

W3C test exporter should allow exporting newly added files
https://bugs.webkit.org/show_bug.cgi?id=182369

Patch by Youenn Fablet <you...@apple.com> on 2018-02-02
Reviewed by Ryosuke Niwa.

* Scripts/webkitpy/common/checkout/scm/git.py:
(Git.apply_mail_patch):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (228036 => 228037)


--- trunk/Tools/ChangeLog	2018-02-03 00:49:56 UTC (rev 228036)
+++ trunk/Tools/ChangeLog	2018-02-03 00:53:51 UTC (rev 228037)
@@ -1,3 +1,13 @@
+2018-02-02  Youenn Fablet  <you...@apple.com>
+
+        W3C test exporter should allow exporting newly added files
+        https://bugs.webkit.org/show_bug.cgi?id=182369
+
+        Reviewed by Ryosuke Niwa.
+
+        * Scripts/webkitpy/common/checkout/scm/git.py:
+        (Git.apply_mail_patch):
+
 2018-02-02  David Quesada  <david_ques...@apple.com>
 
         WebAppManifest scope should default to the containing directory of start_url if 'scope' is not specified

Modified: trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py (228036 => 228037)


--- trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py	2018-02-03 00:49:56 UTC (rev 228036)
+++ trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py	2018-02-03 00:53:51 UTC (rev 228037)
@@ -588,7 +588,7 @@
         return self._run_git(['reset', '--hard', commit])
 
     def apply_mail_patch(self, options):
-        return self._run_git(['apply'] + options)
+        return self._run_git(['apply', '--index'] + options)
 
     def commit(self, options):
         return self._run_git(['commit'] + options)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to