pcf_blue_green 0.1.4 → 0.1.5
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/pcf_blue_green/version.rb +1 -1
- data/lib/shared-deploy-functions.sh +5 -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: 965a182b14408b7b22378c269435ee492e26b90a
|
|
4
|
+
data.tar.gz: f92e947bf5d927770fb83edd5193384711fe5d2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c22bd6f1b0b4aab38dc07e6db1f380408a4efb51f9616a2b8bb09d5ab2eb5257e836ededf094109cf137c303c99b582c29c681b94172761e41e759968fa78bfe
|
|
7
|
+
data.tar.gz: 8067b45f974bfc71a16347d4d2c3ed4de69bbd25b923e04f521a73acfc8777375681d8b526a453c69ba4c6a54f8df8a40a8b555a467a501c9c119f6631976c46
|
|
@@ -166,7 +166,11 @@ function get-domain {
|
|
|
166
166
|
function prep-green {
|
|
167
167
|
blue=${cf_app}
|
|
168
168
|
export green="${cf_app}-${cf_space}-green"
|
|
169
|
-
|
|
169
|
+
if [ -z ${cf_manifest+x }]; then
|
|
170
|
+
generate-manifest
|
|
171
|
+
else
|
|
172
|
+
echo -e "\n${BWhi}Using manifest an from existing file.${RCol}"
|
|
173
|
+
fi
|
|
170
174
|
get-domain
|
|
171
175
|
}
|
|
172
176
|
|