Changeset 140204 in webkit


Ignore:
Timestamp:
Jan 18, 2013 1:46:40 PM (11 years ago)
Author:
rakuco@webkit.org
Message:

VCSUtils.pm: Stop calling git repo-config.
https://bugs.webkit.org/show_bug.cgi?id=107294

Reviewed by Dirk Pranke.

The `repo-config' git command has been deprecated since early
2008, and recent versions have started warning it is deprecated.

Basically revert r27870 and use the `config' command all the time.

  • Scripts/VCSUtils.pm:

(gitConfig):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r140192 r140204  
     12013-01-18  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
     2
     3        VCSUtils.pm: Stop calling git repo-config.
     4        https://bugs.webkit.org/show_bug.cgi?id=107294
     5
     6        Reviewed by Dirk Pranke.
     7
     8        The `repo-config' git command has been deprecated since early
     9        2008, and recent versions have started warning it is deprecated.
     10
     11        Basically revert r27870 and use the `config' command all the time.
     12
     13        * Scripts/VCSUtils.pm:
     14        (gitConfig):
     15
    1162013-01-18  Levi Weintraub  <leviw@chromium.org>
    217
  • trunk/Tools/Scripts/VCSUtils.pm

    r131450 r140204  
    18161816
    18171817    my $result = `git config $config`;
    1818     if (($? >> 8)) {
    1819         $result = `git repo-config $config`;
    1820     }
    18211818    chomp $result;
    18221819    return $result;
Note: See TracChangeset for help on using the changeset viewer.