etcdist 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/etcdist/version.rb +1 -1
- data/lib/etcdist/writer.rb +1 -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: db4c9a608ad36977e89d67b42bad146d43bac8d4
|
4
|
+
data.tar.gz: 9e53d6d130d63a9bcadfba1032f831be4f4a97ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1696a9950242d74df7e6bb785d7e89590f8a9bd53e4912e68291785268fb0a5601947aee6b8a0a2ae402445f8b636bd11ed155479871bf6946764805c64fb51
|
7
|
+
data.tar.gz: b8b3fecfc008091cb91370f66770cdc3d87df907f401e4195de0abf6687766db9e23fa35de5278802295667271f14e782c6f6a40971430329736fd578bbf83ce
|
data/lib/etcdist/version.rb
CHANGED
data/lib/etcdist/writer.rb
CHANGED
@@ -65,8 +65,7 @@ module Etcdist
|
|
65
65
|
until nodes_to_process_stack.empty?
|
66
66
|
node = nodes_to_process_stack.pop
|
67
67
|
result.push(node.key)
|
68
|
-
|
69
|
-
child_dir_nodes.each { |child_dir_node| nodes_to_process_stack.push(child_dir_node) }
|
68
|
+
node.children.each { |child_node| nodes_to_process_stack.push(child_node) if child_node.dir }
|
70
69
|
end
|
71
70
|
|
72
71
|
result
|