X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/e3ac0d70956f5b5fee633f7cbf4b3b8616e4f06c..685d366c738db4d9902fb574d41a8034cbca08b1:/tools/mkversion.pl diff --git a/tools/mkversion.pl b/tools/mkversion.pl index de394a85..fe6ee0c7 100644 --- a/tools/mkversion.pl +++ b/tools/mkversion.pl @@ -5,20 +5,22 @@ # -- Henryk Plötz 2009-09-28 # Modified april 2014 because of the move to github. # --- Martin Holst Swende +# Modified january 2016 to work with Travis-CI +# --- iceman - -# Clear environment locale so that svn will not use localized strings +# Clear environment locale so that git will not use localized strings $ENV{'LC_ALL'} = "C"; $ENV{'LANG'} = "C"; +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 $fullgitinfo= $gitbranch . '/'.$gitversion; +my $fullgitinfo = 'iceman' . $gitbranch . '/' . $gitversion; -$fullgitinfo=~ s/(\s)//g; +$fullgitinfo =~ s/(\s)//g; # Crop so it fits within 50 characters $fullgitinfo =~ s/.{50}\K.*//s;