X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/3927b707bd00290ca84af36c8b070378a1482113..23c1df52b0fc3f15fc03798b0fc6e36e77faa801:/tools/mkversion.pl diff --git a/tools/mkversion.pl b/tools/mkversion.pl index 4b771517..a3ec2f2b 100644 --- a/tools/mkversion.pl +++ b/tools/mkversion.pl @@ -38,13 +38,14 @@ if(open(SVNINFO, "svn info $main_dir|")) { } } else { - # Strategy two: look for .svn/entries. The third line should be "dir", the fourth line should contain the current + # Strategy two: look for .svn/entries. The third line should be "dir", the fourth line should contain + # the currently checked out revision, the eleventh line should contain the last changed revision. # revision. if(open(ENTRIES, "$main_dir/.svn/entries")) { my $i = 1; while() { last if($i == 3 and !/^dir/); - if($i == 4 and /^([0-9]*)/) { + if($i == 11 and /^([0-9]*)/) { $present = 1; $svnversion = $1; }