diff options
-rwxr-xr-x | tools/sync-webkit-git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sync-webkit-git.py b/tools/sync-webkit-git.py index 2809233..41a4a15 100755 --- a/tools/sync-webkit-git.py +++ b/tools/sync-webkit-git.py @@ -35,7 +35,7 @@ def FindSVNRev(rev): """Map an SVN revision to a git hash. Like 'git svn find-rev' but without the git-svn bits.""" # We find r123 by grepping for a line with "git-svn-id: blahblahblah@123". - return RunGit(['rev-list', '-n', '1', '--grep=^git-svn-id: .*@%s$' % rev, + return RunGit(['rev-list', '-n', '1', '--grep=^git-svn-id: .*trunk@%s ' % rev, 'origin']) def UpdateGClientBranch(webkit_rev): |