nixenvironment 0.0.41 → 0.0.42
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/bin/nixenvironment +3 -2
- data/lib/nixenvironment/version.rb +1 -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: 60ff67420116bcca695c5042bae605ed43133cbb
|
4
|
+
data.tar.gz: ab3622522ac15e841ca76dc80d266c2bb05e2500
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c750f0c1a9e5fe3913048bf197985de69199e96fc1b9e7e6e6cc9923fe2608cea86229c3dbbcb4ad1c822a8a48c58e91f94dd498bfc63937ea52f032069fb2bf
|
7
|
+
data.tar.gz: b176fce145ee6997e5e92c4377a635cf4f346dfd59dda649e356f8bd82cbf84fba4d8f96ff0d5643714a79e29a77ba0594bf2c49ea34d57caa15b7b20a4f070d
|
data/bin/nixenvironment
CHANGED
@@ -628,9 +628,10 @@ def deploy(deliver_deploy)
|
|
628
628
|
deploy_password = @config_settings['DEPLOY_PASSWORD'].nil? || @config_settings['DEPLOY_PASSWORD'].empty? ? ENV['DEPLOY_PASSWORD'] : @config_settings['DEPLOY_PASSWORD']
|
629
629
|
deploy_itunesconnect_username = @config_settings['DEPLOY_ITUNESCONNECT_USERNAME'].nil? || @config_settings['DEPLOY_ITUNESCONNECT_USERNAME'].empty? ? ENV['DEPLOY_ITUNESCONNECT_USERNAME'] : @config_settings['DEPLOY_ITUNESCONNECT_USERNAME']
|
630
630
|
|
631
|
-
|
631
|
+
deploy_itunesconnect_username ||= 'unknown'
|
632
|
+
deliver_deploy = deliver_deploy ? 1 : 0
|
632
633
|
|
633
|
-
deploy_success = system("#{deploy} #{deploy_host} #{deploy_path} #{deploy_username} #{deploy_password} #{deploy_itunesconnect_username} #{
|
634
|
+
deploy_success = system("#{deploy} #{deploy_host} #{deploy_path} #{deploy_username} #{deploy_password} #{deploy_itunesconnect_username} #{deliver_deploy}")
|
634
635
|
abort('Deploy error!') unless deploy_success
|
635
636
|
end
|
636
637
|
|