chg: bash seems to work better on Ubuntu. Tested on ubuntu, mingw.

This commit is contained in:
iceman1001 2018-04-26 23:16:38 +02:00
parent 1a0a465e11
commit a11162a9fe

View file

@ -19,7 +19,7 @@ my $ctime;
# GIT status 0 = dirty, 1 = clean , 2 = undecided
my $clean = 2;
# Do we have acces to git command?
my $commandGIT = `sh which git`;
my $commandGIT = `bash which git`;
if ( defined($commandGIT) ) {