Skip to content

Commit

Permalink
fix: make directSshViaExec understand that localSshOptions is a list
Browse files Browse the repository at this point in the history
  • Loading branch information
gkc committed Sep 12, 2023
1 parent cc31b14 commit a64498f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sshnoports/lib/sshnp/sshnp_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ class SSHNPImpl implements SSHNP {
' -f' // fork after authentication - this is important
;
if (addForwardsToTunnel) {
argsString += ' $localSshOptions';
argsString += ' ${localSshOptions.join(' ')}';
}
argsString += ' sleep 15';

Expand Down

0 comments on commit a64498f

Please sign in to comment.