tailstack 0.0.8 → 0.0.9
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/tailstack +2 -2
- 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: 0c07a56d02b809a4ff37b79b56bd4c48c9188757
|
4
|
+
data.tar.gz: b13e69a9d8dbec6ea3ad28ecd8bd33430a6a310f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ee356153e889530d9a800cbc06b2cce0bb4d5d9a9b287e43f722dc6c2ed31b6ba7ea01b3b5df24ef4a548ad125f78ca516e62c5299115ba3b9d3b888518bce8
|
7
|
+
data.tar.gz: 86310c30371012b5ca5f9d9106854a72dd52d2f0a5996efd3ea3e6c5237ccb5af41b5dea3df1f36e0dd929e5f726264b717ac58763efbb5528dc8fe903e17593
|
data/bin/tailstack
CHANGED
@@ -149,7 +149,7 @@ def print_list(cfn, options)
|
|
149
149
|
puts " #{parm[:parameter_key].blue}: #{parm[:parameter_value].gray}"
|
150
150
|
end
|
151
151
|
end
|
152
|
-
if options.key?(:outputs) && s[:outputs]
|
152
|
+
if (options.key?(:outputs) || options.key?(:get_out)) && s[:outputs]
|
153
153
|
puts " #{"Outputs:".magenta}" unless options.key? :get_out
|
154
154
|
s[:outputs].each do |output|
|
155
155
|
if options.key?(:get_out) && output[:output_key] == options[:get_out]
|
@@ -164,7 +164,7 @@ def print_list(cfn, options)
|
|
164
164
|
exit 0
|
165
165
|
end
|
166
166
|
|
167
|
-
print_list(cfn, options) if options.key?(:list)
|
167
|
+
print_list(cfn, options) if (options.key?(:list) || options.key?(:get_out))
|
168
168
|
|
169
169
|
# Turn on outputs for finish summary
|
170
170
|
options[:outputs] = true
|