lastpass-ssh 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/lastpass-ssh +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: db5929d75fa6475a9f214ced7bd63559565a4610
|
|
4
|
+
data.tar.gz: 565e295b4ac0f13a3f4f3afc992ba85bfd4d7448
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af0facef4ff01d49ff7e94ec177788289486f1f48f15789a3f0b381a4b0afa1cef27cac58c6d0fef95a8b3a4f667cff7c5458a85ab442c4a49b7553b92ed861d
|
|
7
|
+
data.tar.gz: a547650010a8fd0f410565093ab94e924f12c760892658c6b0e2655ff3bfa9c9634d7237d3656f0ef3cfb6f83e0d25d6e0aaa3a568de97cca221ed2f7a76e0f5
|
data/bin/lastpass-ssh
CHANGED
|
@@ -61,7 +61,7 @@ else
|
|
|
61
61
|
lines = raw_lines.split("\n").select { |l| l if l =~ /^Secure/ }[1..-1]
|
|
62
62
|
|
|
63
63
|
# Check if we got anything from `lpass`
|
|
64
|
-
if lines.length <= 0 then
|
|
64
|
+
if lines == nil or lines.length <= 0 then
|
|
65
65
|
print "Something looks wrong. Maybe you don't have any Secure Notes yet?\n"
|
|
66
66
|
print "In that case, take a look at lastpass-ssh README file\n"
|
|
67
67
|
exit 64
|