Browse Source

change var to let

pull/250/head
Kyle Lucy 4 years ago
parent
commit
03b4cea41f
  1. 2
      src/server/command/ssh.ts

2
src/server/command/ssh.ts

@ -6,7 +6,7 @@ export default function sshOptions(
{ pass, path, command, host, port, auth, knownhosts }: { [s: string]: string },
key?: string
): string[] {
var hostChecking;
let hostChecking;
const cmd = parseCommand(command, path);
if (knownhosts !== '/dev/null') {
hostChecking = 'yes';

Loading…
Cancel
Save