mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-08 17:18:10 +08:00
Stop poking Internet when compiling
This commit is contained in:
parent
200290bc56
commit
a555799a7c
1 changed files with 2 additions and 1 deletions
|
@ -32,7 +32,8 @@ my $commandGIT = "env which git";
|
||||||
|
|
||||||
if ( defined($commandGIT) ) {
|
if ( defined($commandGIT) ) {
|
||||||
|
|
||||||
my $githistory = `git fetch --all`;
|
# this goes on Internet and cause major slowdowns on poor connections or intranets, let's comment it
|
||||||
|
#my $githistory = `git fetch --all`;
|
||||||
# now avoiding the "fatal: No names found, cannot describe anything." error by fallbacking to abbrev hash in such case
|
# now avoiding the "fatal: No names found, cannot describe anything." error by fallbacking to abbrev hash in such case
|
||||||
my $gitversion = `git describe --dirty --always`;
|
my $gitversion = `git describe --dirty --always`;
|
||||||
my $gitbranch = `git rev-parse --abbrev-ref HEAD`;
|
my $gitbranch = `git rev-parse --abbrev-ref HEAD`;
|
||||||
|
|
Loading…
Reference in a new issue