kitchen_hooks 1.7.21 → 1.7.22
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/VERSION +1 -1
- data/lib/kitchen_hooks/helpers.rb +3 -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: 02d2ea2f0aab79450e7d021050df274dbe036733
|
|
4
|
+
data.tar.gz: ca5dd117f5a5fd16c58feb13328743d7fa06f84c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6fa10b73e44566fb41ea6684099d7edc1d644608baa2ee8002a295616dfce51ae93be4d07d49878bed59d400d089d3f7824d7f28edd937aaec83dbbbf7aa6afe
|
|
7
|
+
data.tar.gz: 1ac714b30b327f16fb58e3712e3b88b93ab38773088e704b5b2c686387deb5351f7f8dcb7b90c1c970d98fb0255315667753c7853e5de79d6bc426ea9ffcb979
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.7.
|
|
1
|
+
1.7.22
|
|
@@ -121,7 +121,9 @@ module KitchenHooks
|
|
|
121
121
|
begin
|
|
122
122
|
outs = with_each_knife_do "cookbook upload #{cookbook_name event} -o .. --freeze", knives
|
|
123
123
|
rescue
|
|
124
|
-
|
|
124
|
+
unless outs =~ /is frozen/ # Ignore frozen cookbooks already uploaded
|
|
125
|
+
raise 'Knife exited unsuccessfully. Check out the Kitchen Hooks logs.'
|
|
126
|
+
end
|
|
125
127
|
end
|
|
126
128
|
|
|
127
129
|
$stdout.puts 'Uploading bundled roles, environments, and data bags'
|