diff options
| author | elijah <elijah@riseup.net> | 2016-07-21 13:11:56 -0700 | 
|---|---|---|
| committer | elijah <elijah@riseup.net> | 2016-07-21 13:11:56 -0700 | 
| commit | c5383dbf76961fcc9bdaeccdeecbc7972a61cccb (patch) | |
| tree | 94c880b721059c26738ca5fb971276c5d4e1cb3a | |
| parent | 2df23a682b9a1a99502c79d7112dcefeecf63619 (diff) | |
fix missing hostname in ssh/scripts.rb
| -rw-r--r-- | lib/leap_cli/ssh/scripts.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/leap_cli/ssh/scripts.rb b/lib/leap_cli/ssh/scripts.rb index 7b76285b..a15a9edd 100644 --- a/lib/leap_cli/ssh/scripts.rb +++ b/lib/leap_cli/ssh/scripts.rb @@ -17,7 +17,7 @@ module LeapCli        attr_reader :ssh, :host        def initialize(backend, hostname)          @ssh = backend -        @host = host +        @host = hostname        end        # | 
