mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-01 02:27:21 +08:00
CHG: got insperation from https://github.com/menshiyun/proxmark3/commits/local and the clean variable.
This commit is contained in:
parent
b7f40ee2ad
commit
dbbc82968c
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ $ENV{'LANG'} = "C";
|
||||||
my $githistory = `git fetch --all`;
|
my $githistory = `git fetch --all`;
|
||||||
my $gitversion = `git describe --dirty`;
|
my $gitversion = `git describe --dirty`;
|
||||||
my $gitbranch = `git rev-parse --abbrev-ref HEAD`;
|
my $gitbranch = `git rev-parse --abbrev-ref HEAD`;
|
||||||
my $clean = 2;
|
my $clean = $gitversion =~ '-dirty' ? 0 : 1;
|
||||||
my @compiletime = localtime();
|
my @compiletime = localtime();
|
||||||
|
|
||||||
my $fullgitinfo = 'iceman';
|
my $fullgitinfo = 'iceman';
|
||||||
|
|
Loading…
Reference in a new issue