Changeset 125675 in webkit


Ignore:
Timestamp:
Aug 15, 2012 8:46:47 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Fix the 'git log' call in VCSUtils.pm for Windows
https://bugs.webkit.org/show_bug.cgi?id=94113

Patch by Kevin Funk <kevin.funk@kdab.com> on 2012-08-15
Reviewed by Kenneth Rohde Christiansen.

Failed because of invalid enquoting characters.

  • Scripts/VCSUtils.pm:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r125674 r125675  
     12012-08-15  Kevin Funk  <kevin.funk@kdab.com>
     2
     3        Fix the 'git log' call in VCSUtils.pm for Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=94113
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Failed because of invalid enquoting characters.
     9
     10        * Scripts/VCSUtils.pm:
     11
    1122012-08-14  Gustavo Noronha Silva  <gns@gnome.org>
    213
  • trunk/Tools/Scripts/VCSUtils.pm

    r125163 r125675  
    384384        ($revision) = ($svnInfo =~ m/Revision: (\d+).*/g);
    385385    } elsif (isGitDirectory($dir)) {
    386         my $command = "git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:";
     386        my $command = "git log --grep=\"git-svn-id: \" -n 1 | grep git-svn-id:";
    387387        $command = "LC_ALL=C $command" if !isWindows();
    388388        $command = "cd $dir && $command";
Note: See TracChangeset for help on using the changeset viewer.