nixenvironment 0.0.129 → 0.0.130
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 -0
- 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: ae541be70b6838b48d6706b6009b37d5b955bb9c
|
|
4
|
+
data.tar.gz: b5e0cd0c54a7812731242aa5952ce245aaea33af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 666fbb561e9454bc0c88ac5778d1f58f12a468d05ae0c5831e6950c100f9ad4aa11e5b9adffdfc132f89f806979938880cd70b889c44bb1f4cabc08bcd17049e
|
|
7
|
+
data.tar.gz: 1f0bb1237297dad545015784ce322b00b425fe57e20a8faf85e46d841c04a49dcd8416ae5fd075e65c3bd9511ba1cc09a7eafe6f0b8cead434341e2eea764ab3
|
|
@@ -285,6 +285,10 @@ module Nixenvironment
|
|
|
285
285
|
end
|
|
286
286
|
end
|
|
287
287
|
|
|
288
|
+
# Force remove libswiftRemoteMirror.dylib from bundle
|
|
289
|
+
libswift_path = File.join(app_product_path, 'libswiftRemoteMirror.dylib')
|
|
290
|
+
FileUtils.rm_f(libswift_path)
|
|
291
|
+
|
|
288
292
|
set_plist_values_in_app_path(app_product_path, 'Configuration' => 'Appstore') if is_appstore
|
|
289
293
|
|
|
290
294
|
# replace provision, rename bundle_id and bundle_name
|