mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 09:09:06 +00:00
Merge pull request #140 from tmancill/startup-vars
warn user when short-circuiting initialisation
This commit is contained in:
commit
70b4731659
1 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,10 @@ sub import {
|
|||
|
||||
# If we are building or in test here, just exit
|
||||
# as travis build servers will not have Tk installed
|
||||
return if $ENV{AUTHOR_TESTING} || $ENV{RELEASE_TESTING};
|
||||
if ($ENV{AUTHOR_TESTING} || $ENV{RELEASE_TESTING}) {
|
||||
print STDERR "skipping initialisation; AUTHOR_TESTING or RELEASE_TESTING are set\n";
|
||||
return;
|
||||
}
|
||||
|
||||
# Find what windows module we should be using and just overlay it into
|
||||
# this object
|
||||
|
|
Loading…
Add table
Reference in a new issue