]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
CHG: saw @menshiyun 's change to localtime on github.
authoriceman1001 <iceman@iuse.se>
Mon, 26 Sep 2016 10:28:35 +0000 (12:28 +0200)
committericeman1001 <iceman@iuse.se>
Mon, 26 Sep 2016 10:28:35 +0000 (12:28 +0200)
CHG: make sure that the 'iceman' label is in the version text.  This is purely to make sure if they are using my fork or not.

tools/mkversion.pl

index 3edc360594573e1da6b38886fe160a67c2bbda1e..2755b3b99fd1eac67026e2ec0b3ce13616ad15e7 100644 (file)
@@ -16,14 +16,14 @@ my $githistory = `git fetch --all`;
 my $gitversion = `git describe --dirty`;
 my $gitbranch = `git rev-parse --abbrev-ref HEAD`;
 my $clean = 2;
-my @compiletime = gmtime();
+my @compiletime = localtime();
 
 my $fullgitinfo = 'iceman';
 
 if ( defined $gitbranch and defined $gitversion ) {
-       $fullgitinfo =  '/'. $gitbranch . '/' . $gitversion;
+       $fullgitinfo =  $fullgitinfo.'/'. $gitbranch . '/' . $gitversion;
 } else {
-       $fullgitinfo =  '/master/release-build (no_git)';
+       $fullgitinfo =  $fullgitinfo.'/master/release-build (no_git)';
 }
 
 $fullgitinfo =~ s/(\s)//g;
Impressum, Datenschutz