From d61e712ee45695a62c9400179f88a0ca29bf5436 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 17 Sep 2017 19:30:20 +0200 Subject: [PATCH] chg: mkversion.pl may need the fetch. --- tools/mkversion.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkversion.pl b/tools/mkversion.pl index 795b50a47..2a47903ca 100644 --- a/tools/mkversion.pl +++ b/tools/mkversion.pl @@ -12,7 +12,7 @@ $ENV{'LC_ALL'} = "C"; $ENV{'LANG'} = "C"; -#my $githistory = `git fetch --all`; +my $githistory = `git fetch --all`; my $gitversion = `git describe --dirty`; my $gitbranch = `git rev-parse --abbrev-ref HEAD`; my $clean = $gitversion =~ '-dirty' ? 0 : 1;