fix issue.pl to use "new style" git commands
[spider.git] / perl / issue.pl
index 10887c8ca966ad702b8c8448108df30d38690921..f7345c8ef50cac93321d067acdd9ac34a05961b0 100755 (executable)
@@ -18,7 +18,7 @@ use strict;
 
 use vars qw($root);
 my $fn = "$root/perl/Version.pm";
-my $desc = `git-describe --long`;
+my $desc = `git describe --long`;
 my ($v, $s, $b) = $desc =~ /^([\d.]+)(?:\.(\d+))?-(\d+)-/;
 $s ||= '0';            # account for missing subversion
 $b++;                  # to account for the commit that is about to happen