summaryrefslogtreecommitdiff
path: root/svn-git-hash.pl
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2017-05-10 22:12:17 +0100
committerRenato Golin <renato.golin@linaro.org>2017-05-10 22:12:17 +0100
commit624259c8e76bb65038def88610db07580843ecce (patch)
treed70d70cbdba5be56ef5d4a3f3ae0988c68a8695d /svn-git-hash.pl
parentd654d743529b3a69d3df0165f56ef3b4d41e61f0 (diff)
svn-git-hash.pl: Update comment after hash change
Change-Id: Iea987069f3117467c608e1bb6b6a6f4664f1354c
Diffstat (limited to 'svn-git-hash.pl')
-rwxr-xr-xsvn-git-hash.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/svn-git-hash.pl b/svn-git-hash.pl
index 9e92c655..aacecf81 100755
--- a/svn-git-hash.pl
+++ b/svn-git-hash.pl
@@ -44,8 +44,7 @@ my ($git, $svn);
# Walk the log until the exact (or lower) revision is found
open LOG, "git -C \"$BASE\" log|" || die "Can't run git log command: $!\n";
foreach my $line (<LOG>) {
- # Make sure we always update git hashes to the latest
- # 11 chars, to be easy to compare to git log --pretty=oneline
+ # Make sure we always update git hashes before SVN id
if ($line =~ /^commit ([0-9a-f]+)/) {
$git = $1;
next;