mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 09:09:06 +00:00
Do not use system perl
Use whichever perl is configured first on the users PATH, not the system perl. This fixes problems when building in a perlbrew environment.
This commit is contained in:
parent
f169e544fd
commit
6bf4b932ee
6 changed files with 6 additions and 5 deletions
1
Changes
1
Changes
|
@ -4,6 +4,7 @@
|
|||
- Ensure config file option for ssh_args is not lost when options is not used on command line (Github issue: 14)
|
||||
- New Send menu option to send a numeric value between 1 and 1024 (thanks to cqexbesd)
|
||||
- Remove all history when history window closed (thanks to Bill Rushmore)
|
||||
- Do not use system perl but whatever is found in PATH (to stop breaking perlbrew based builds)
|
||||
|
||||
4.03_02 2014-08-10 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
||||
- Fix behaviour when external cluster command is not defined or doesn't exist
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/perl
|
||||
#!/usr/bin/env perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/perl
|
||||
#!/usr/bin/env perl
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/perl
|
||||
#!/usr/bin/env perl
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/perl
|
||||
#!/usr/bin/env perl
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/perl
|
||||
#!/usr/bin/env perl
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue