⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 249190 in webkit


Ignore:
Timestamp:
Aug 27, 2019, 8:15:33 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Fix applying diffs that only change file mode
https://bugs.webkit.org/show_bug.cgi?id=201191

Patch by James Darpinian <jdarpinian@google.com> on 2019-08-27
Reviewed by Daniel Bates.

  • Scripts/svn-apply:

(patch): Handle case of file mode change without content change

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r249189 r249190  
     12019-08-27  James Darpinian  <jdarpinian@google.com>
     2
     3        Fix applying diffs that only change file mode
     4        https://bugs.webkit.org/show_bug.cgi?id=201191
     5
     6        Reviewed by Daniel Bates.
     7
     8        * Scripts/svn-apply:
     9        (patch): Handle case of file mode change without content change
     10
    1112019-08-27  Aakash Jain  <aakash_jain@apple.com>
    212
  • trunk/Tools/Scripts/svn-apply

    r239718 r249190  
    383383            close($FH);
    384384            scmAdd($fullPath);
    385         } else {
     385        } elsif (!defined($diffHashRef->{executableBitDelta})) {
    386386            die "Can't handle patch for \"$fullPath\".";
    387387        }
Note: See TracChangeset for help on using the changeset viewer.