update structure

This commit is contained in:
2016-06-25 15:30:57 +02:00
parent 6339a3ed9b
commit 5b1f800067
12 changed files with 97 additions and 38 deletions

View File

@@ -15,7 +15,7 @@ export class SshInstance {
optionsArg ? void(0) : optionsArg = {};
this._sshKeyArray = [];
this._sshConfig = new SshConfig(this._sshKeyArray);
this._sshDir = new SshDir(this._sshKeyArray,optionsArg.sshDirPath);
this._sshDir = new SshDir(this._sshKeyArray,this._sshConfig,optionsArg.sshDirPath);
this._sshSync = optionsArg.sshSync;
};
@@ -101,5 +101,3 @@ export class SshInstance {
}
};
}