nixenvironment 0.0.145 → 0.0.146
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 +7 -7
- data/lib/nixenvironment/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 41738ec5b23196d63c3a13d8c7e4d0c65185787a21605bea8d77c09d638bee99
|
|
4
|
+
data.tar.gz: 2fbad3b384ee71b60e9791c44be67f50e6831fd702e5139bacc019d6d98cf738
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45e1387c476f6d3caeda613af1dd613315accc1e6f1c54179d9f5b21b6a3574ce5a25845c83b8d37e2c1ab15da637819ce4e36da529c9ee0ec037d0be6f384eb
|
|
7
|
+
data.tar.gz: a9d7a427b5abb0e925c99f17ba5248e21a085748ef0ec606bb8dc3b07db6acef19864861ccb899be0cb468030cbae636b4a67bda6d1728fa0381ff3c436441d8
|
data/bin/nixenvironment
CHANGED
|
@@ -141,13 +141,6 @@ command :build do |c|
|
|
|
141
141
|
|
|
142
142
|
read_config_settings
|
|
143
143
|
|
|
144
|
-
if $bundle_id
|
|
145
|
-
plist_path = @config_settings[PRODUCT_SETTINGS_PATH_KEY]
|
|
146
|
-
info_plist = Plist.from_file(plist_path)
|
|
147
|
-
info_plist['CFBundleIdentifier'] = $bundle_id
|
|
148
|
-
info_plist.save(plist_path, Plist::FORMAT_XML)
|
|
149
|
-
end
|
|
150
|
-
|
|
151
144
|
@config_settings[CONFIGURATION_KEY] = options.config
|
|
152
145
|
|
|
153
146
|
if is_unity_platform
|
|
@@ -177,6 +170,13 @@ command :build do |c|
|
|
|
177
170
|
|
|
178
171
|
@config_settings.merge!(Xcodebuild.config_settings) { |_key, v1, v2| v1 || v2 }
|
|
179
172
|
|
|
173
|
+
if $bundle_id
|
|
174
|
+
plist_path = @config_settings[PRODUCT_SETTINGS_PATH_KEY]
|
|
175
|
+
info_plist = Plist.from_file(plist_path)
|
|
176
|
+
info_plist['CFBundleIdentifier'] = $bundle_id
|
|
177
|
+
info_plist.save(plist_path, Plist::FORMAT_XML)
|
|
178
|
+
end
|
|
179
|
+
|
|
180
180
|
begin
|
|
181
181
|
prebuild(options.config, options.app_version, options.requires_fullscreen, options.skip_working_copy_check)
|
|
182
182
|
build(options.config, options.xcconfig, options.ipa, options.ndsym, options.icon_tagger, options.xc_args)
|