Changeset 228037 in webkit


Ignore:
Timestamp:
Feb 2, 2018 4:53:51 PM (6 years ago)
Author:
commit-queue@webkit.org
Message:

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

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

  • Scripts/webkitpy/common/checkout/scm/git.py:

(Git.apply_mail_patch):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r228036 r228037  
     12018-02-02  Youenn Fablet  <youenn@apple.com>
     2
     3        W3C test exporter should allow exporting newly added files
     4        https://bugs.webkit.org/show_bug.cgi?id=182369
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * Scripts/webkitpy/common/checkout/scm/git.py:
     9        (Git.apply_mail_patch):
     10
    1112018-02-02  David Quesada  <david_quesada@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py

    r227427 r228037  
    589589
    590590    def apply_mail_patch(self, options):
    591         return self._run_git(['apply'] + options)
     591        return self._run_git(['apply', '--index'] + options)
    592592
    593593    def commit(self, options):
Note: See TracChangeset for help on using the changeset viewer.