capistrano_multiconfig_parallel 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a746f33a265f4fc48ab56e721237bf0ee4a8b630
|
4
|
+
data.tar.gz: 7b4e88796307b7e716e295c30ad92c95ea4bb956
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7637c413863f49dfd94f1ab15d9ba226905c0f14a9f88de829d5c856bf6645174c19821c67b260ca0bf264c9797857f7fcc13286385157a06b9561b4826c189f
|
7
|
+
data.tar.gz: 5c89b080cef04295fb4e65b5b964e6bdf055b7b8adc0fa72f7a4d47a8efeb0546223155a74374a11bc60a12eb68916129e30fde9516f11fb22bcfeb0187ce161
|
@@ -83,7 +83,7 @@ module CapistranoMulticonfigParallel
|
|
83
83
|
def print_frameworks_used(app_names, applications_to_deploy, action)
|
84
84
|
app_names.each { |app| puts "#{app}" }
|
85
85
|
set :apps_deploy_confirmation, CapistranoMulticonfigParallel.ask_confirm("Are you sure you want to #{action} these apps?", 'Y/N')
|
86
|
-
if fetch(:apps_deploy_confirmation).blank? || (fetch(:apps_deploy_confirmation).present? && fetch(:apps_deploy_confirmation).downcase
|
86
|
+
if fetch(:apps_deploy_confirmation).blank? || (fetch(:apps_deploy_confirmation).present? && fetch(:apps_deploy_confirmation).downcase != 'y')
|
87
87
|
return []
|
88
88
|
elsif fetch(:apps_deploy_confirmation).present? && fetch(:apps_deploy_confirmation).downcase == 'y'
|
89
89
|
return applications_to_deploy
|