Skip to content

Commit

Permalink
Mosh static test on regular bootstrap
Browse files Browse the repository at this point in the history
We consider the remote route as valid from our side and avoid specifying the flag all the time.
  • Loading branch information
Carlos Cabanero committed Feb 5, 2024
1 parent b0e891b commit 9828494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Blink/Commands/mosh/mosh.swift
Expand Up @@ -184,7 +184,7 @@ enum MoshError: Error, LocalizedError {
sequence = [UseMoshOnPath.staticMosh(),
InstallStaticMosh(onCancel: { [weak self] in self?.kill() }, logger: self.logger)]
} else {
sequence = [UseMoshOnPath(path: moshClientParams.server)]
sequence = [UseMoshOnPath.staticMosh(), UseMoshOnPath(path: moshClientParams.server)]
}

let pty: SSH.SSHClient.PTY?
Expand Down

0 comments on commit 9828494

Please sign in to comment.