Fix bad version tag

The 3.1.0 release has not been tagged with an annotated tag, therefore
`git describe` ignores it and marks the firmware as 3.0.1.
This commit is contained in:
Hector Sanjuan 2018-10-20 23:27:23 +02:00
commit fa22c310d2

View file

@ -11,7 +11,7 @@
$ENV{'LC_ALL'} = "C"; $ENV{'LC_ALL'} = "C";
$ENV{'LANG'} = "C"; $ENV{'LANG'} = "C";
my $gitversion = `git describe --dirty`; my $gitversion = `git describe --dirty --tags`;
my $gitbranch = `git rev-parse --abbrev-ref HEAD`; my $gitbranch = `git rev-parse --abbrev-ref HEAD`;
my $clean = 2; my $clean = 2;
my @compiletime = gmtime(); my @compiletime = gmtime();