escualo 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/escualo/version.rb +1 -1
- data/lib/ssh/local_session.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a0bde0f6f3901516f6e8788ed88742f40140b55
|
4
|
+
data.tar.gz: 1cfb5ffa7192ef0e61fde400c136706c55aebb42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31c49e03d89f58d749692db41b04f9e8316034f66af2d047c41fb20816c6effd529ddf06486352b1f84e0cf5b4a70dd93c6057e839852eb499c55de4c6da9985
|
7
|
+
data.tar.gz: 4807f9b96897638b2b069aed9a99fad06700fecc593f9ff7d58b9defb47b9419f345d05ecb52c2c6eeedc02487a5f3b4921823e157efd855b259657c59e45ad3
|
data/lib/escualo/version.rb
CHANGED
data/lib/ssh/local_session.rb
CHANGED
@@ -6,7 +6,7 @@ class Net::SSH::Connection::LocalSession
|
|
6
6
|
include Net::SSH::Connection::Upload
|
7
7
|
|
8
8
|
def exec!(command)
|
9
|
-
Open3.capture2e(command) rescue 'command not found'
|
9
|
+
Open3.capture2e(command).first rescue 'command not found'
|
10
10
|
end
|
11
11
|
|
12
12
|
def upload_file!(file, destination)
|