Subject: | failure to pass test in 5.8.8 |
lib/Git/Wrapper.pm has 'use 5.006' but line 20 has
my $GIT = $ENV{GIT_WRAPPER_GIT} // 'git';
'//' was introduced in 5.12. Either 'use 5.012' should be used or '||'
on line 20.
I would prefer '||' -- when I changed line 20 to use '||' and ran 'make
test'. all tests passed.