minimal_pipeline 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/lib/minimal_pipeline/packer.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa758fe533ea3344190a6d17d7daab735f097835dacc168f0d7072e690c12d31
|
4
|
+
data.tar.gz: 5f17016ea04805032800357c839c2c211b5329e5d6b387816b8ce25779195d1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5afda4907703cf0b535bbb42ca8962ba4cbac5116ecc3f83555405a866bba95250883c95ebb1ea950e3eb9942d871547c7e9fc520296ca5c803fd856dfd2970
|
7
|
+
data.tar.gz: 53bd9603e7775f1f8a83f7d474b5e5cdb0ec70f704f210c7b071fe1c9cc6d0666030666b6e19273844c9346bfe28566eaadca2cd8496d6ed4f553daba29256c0
|
@@ -6,7 +6,7 @@ class MinimalPipeline
|
|
6
6
|
# Here is an example of how to use this class to build AMIs from Packer YAML
|
7
7
|
#
|
8
8
|
# ```
|
9
|
-
# Pass in the path to the Packer JSON config file
|
9
|
+
# # Pass in the path to the Packer JSON config file
|
10
10
|
# packer = MinimalPipeline::Packer.new('path/to/packer.json')
|
11
11
|
#
|
12
12
|
# variables = {
|
@@ -52,6 +52,7 @@ class MinimalPipeline
|
|
52
52
|
puts command if ENV['DEBUG']
|
53
53
|
|
54
54
|
output = `#{command}`
|
55
|
+
puts output if ENV['DEBUG']
|
55
56
|
get_ami_id(output)
|
56
57
|
end
|
57
58
|
end
|