From 507fd2d43afce72437278dbf7767d32254265daf Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 14 Sep 2017 11:17:03 +0200 Subject: [PATCH] CHG: Not sure why we fetch all from git in the mkversion script. It just takes time.. Someone who knows better can explain it to me and I'll revert it back. --- tools/mkversion.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkversion.pl b/tools/mkversion.pl index 2a47903ca..795b50a47 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;