diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-remote.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-remote.pl.in b/scripts/build-remote.pl.in index a55d758252ea..73d7abe37d32 100755 --- a/scripts/build-remote.pl.in +++ b/scripts/build-remote.pl.in @@ -194,7 +194,7 @@ REQ: while (1) { # Connect to the selected machine. - @sshOpts = ("-i", $machine->{sshKeys}, "-x"); + my @sshOpts = ("-i", $machine->{sshKeys}); $hostName = $machine->{hostName}; eval { ($from, $to) = connectToRemoteNix($hostName, \@sshOpts, "2>&4"); |