X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=lib%2FObject%2FRemote%2FConnector%2FSSH.pm;h=363e214d7156575d42c78ee22a3f0d89f625fda1;hp=fcfb445905e710bfc2a01e063f7810c9414e6c3d;hb=353556c4b81bcb3a0c3fff934eff5ab2f19733d4;hpb=b7a853b30e7397854a813f6a5878e50703a20079 diff --git a/lib/Object/Remote/Connector/SSH.pm b/lib/Object/Remote/Connector/SSH.pm index fcfb445..363e214 100644 --- a/lib/Object/Remote/Connector/SSH.pm +++ b/lib/Object/Remote/Connector/SSH.pm @@ -14,9 +14,6 @@ has ssh_options => (is => 'ro', default => sub { [ '-A' ] }); has ssh_command => (is => 'ro', default => sub { 'ssh' }); -#TODO properly integrate if this works -BEGIN { $ENV{TERM} = 'dumb'; } - sub _escape_shell_arg { my ($self, $str) = (@_); $str =~ s/((?:^|[^\\])(?:\\\\)*)'/$1\\'/g;