nixenvironment 0.0.130 → 0.0.131
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/nixenvironment/archiver.rb +4 -4
- 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: 8ec3101848493ae842fe2888ff88498fe6306ab1
|
|
4
|
+
data.tar.gz: 6262eeee5c1395e9b09c306439e50ae0542c9ab8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b25e1c7492e474660e0e41401e5f34265a68de95a4b2ddcf84e43368de147807d72d966c9b4e9431b436df3d17d99c63bab8cf2375f03ecbcfe138999f7ca00
|
|
7
|
+
data.tar.gz: f59f7141f158d29a07c6285ac729c60b437b15ad6ae8e3af525fee48ffd261d442f7417230583f30393bc6263dd728875883d29cf121b728a0ed09f9830e82b3
|
|
@@ -268,6 +268,10 @@ module Nixenvironment
|
|
|
268
268
|
puts "--> Create '#{swift_support_dir}' ..."
|
|
269
269
|
Dir.mkdir(swift_support_dir)
|
|
270
270
|
|
|
271
|
+
# Force remove libswiftRemoteMirror.dylib from bundle
|
|
272
|
+
libswift_path = File.join(app_product_path, 'libswiftRemoteMirror.dylib')
|
|
273
|
+
FileUtils.rm_f(libswift_path)
|
|
274
|
+
|
|
271
275
|
puts "--> Copy '#{app_product_path}' into '#{dest_app_product_path}' ..."
|
|
272
276
|
FileUtils.cp_r(app_product_path, dest_app_product_path)
|
|
273
277
|
|
|
@@ -285,10 +289,6 @@ module Nixenvironment
|
|
|
285
289
|
end
|
|
286
290
|
end
|
|
287
291
|
|
|
288
|
-
# Force remove libswiftRemoteMirror.dylib from bundle
|
|
289
|
-
libswift_path = File.join(app_product_path, 'libswiftRemoteMirror.dylib')
|
|
290
|
-
FileUtils.rm_f(libswift_path)
|
|
291
|
-
|
|
292
292
|
set_plist_values_in_app_path(app_product_path, 'Configuration' => 'Appstore') if is_appstore
|
|
293
293
|
|
|
294
294
|
# replace provision, rename bundle_id and bundle_name
|