Karthik R <karthikr@xxxxxxxxxxx> writes: > +my $git_ssh_user_set = 1 if defined $ENV{GIT_SSH}; > +if ($git_ssh_user_set) { > + # If GIT_SSH is set, also set SVN_SSH... > + $ENV{SVN_SSH} = $ENV{GIT_SSH}; > + # ... and escape \s in shell-variable on Windows > + if ($^O eq 'MSWin32' || $^O eq 'msys') { > + $ENV{SVN_SSH} =~ s/\\/\\\\/g; > + } > +} > + Why not just if (defined $ENV{GIT_SSH}) { ... ??? > $Git::SVN::Log::TZ = $ENV{TZ}; > $ENV{TZ} = 'UTC'; > $| = 1; # unbuffer STDOUT > -- > 1.5.4.3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html