nixenvironment 0.0.51 → 0.0.52
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 -5
- 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: 77f6231f344e70028d66551f0eccd06d68fc00f1
|
|
4
|
+
data.tar.gz: 6215ce7b8e569d1d229fa25313f12cb677207a7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a6ae06148cadd9f3dda36752f77fe6b90fe5c58d9f8029f04a3051103b30fa35f6d0fc659e82a285c4f315cc5276d42ec25de6007fed5b1c02e8b9d023daba0
|
|
7
|
+
data.tar.gz: 8ae24b7949fed174adeb6c29bc89c3e01596af9985016d1f476e8c9a20ee34172ca922680785b072c2efae028278542158cf543e61f573547ec53bcbc1e7585c
|
data/bin/nixenvironment
CHANGED
|
@@ -88,13 +88,11 @@ command :build do |c|
|
|
|
88
88
|
begin
|
|
89
89
|
read_config_settings
|
|
90
90
|
|
|
91
|
-
if @config_settings['WORKSPACE_TO_BUILD'] and @config_settings['WORKSPACE_TO_BUILD'].length > 0
|
|
92
|
-
scheme = @config_settings['WORKSPACE_SCHEME_TO_BUILD']
|
|
93
|
-
abort("Build error! Scheme #{scheme} doesn't exist") unless xcode_project_contains_scheme?(scheme)
|
|
94
|
-
end
|
|
95
|
-
|
|
96
91
|
if is_unity_platform
|
|
97
92
|
@config_settings['ICONS_PATH'] = 'Unity-iPhone/Images.xcassets' unless $icons_path
|
|
93
|
+
elsif @config_settings['WORKSPACE_TO_BUILD'] and @config_settings['WORKSPACE_TO_BUILD'].length > 0
|
|
94
|
+
scheme = @config_settings['WORKSPACE_SCHEME_TO_BUILD']
|
|
95
|
+
abort("Build error! Scheme #{scheme} doesn't exist") unless xcode_project_contains_scheme?(scheme)
|
|
98
96
|
end
|
|
99
97
|
|
|
100
98
|
enable_ci_build(options.ci_build)
|