Changeset 212591 in webkit


Ignore:
Timestamp:
Feb 17, 2017 3:49:59 PM (7 years ago)
Author:
aakash_jain@apple.com
Message:

Fix failure from r212579.

Unreviewed build-fix.

  • Scripts/webkitpy/tool/steps/checkpatchrelevance.py:

(CheckPatchRelevance._changes_are_relevant): Return true for all groups others than jsc for now.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r212579 r212591  
     12017-02-17  Aakash Jain  <aakash_jain@apple.com>
     2
     3        Fix failure from r212579.
     4
     5        Unreviewed build-fix.
     6
     7        * Scripts/webkitpy/tool/steps/checkpatchrelevance.py:
     8        (CheckPatchRelevance._changes_are_relevant): Return true for all groups others than jsc for now.
     9
    1102017-02-17  Srinivasan Vijayaraghavan  <svijayaraghavan@apple.com>
    211
  • trunk/Tools/Scripts/webkitpy/tool/steps/checkpatchrelevance.py

    r212579 r212591  
    5151    def _changes_are_relevant(self, changed_files):
    5252        # In the default case, all patches are relevant
    53         if self._options.group is None:
     53        if self._options.group != 'jsc':
    5454            return True
    5555
Note: See TracChangeset for help on using the changeset viewer.