Fixed tests on systems where bash is not /bin/bash

Some systems, such as BSD, have bash stored in /usr/local/bin

Remove the assumption that bash is /bin/bash

Github issue #60
This commit is contained in:
Duncan Ferguson 2016-04-08 20:46:51 +01:00
parent 754a7137b6
commit 454f30978d
7 changed files with 25 additions and 9 deletions

View file

@ -3,7 +3,7 @@ package App::ClusterSSH;
use 5.008.004;
use warnings;
use strict;
use version; our $VERSION = version->new('4.06');
use version; our $VERSION = version->new('4.07_1');
use Carp qw/cluck :DEFAULT/;