nixenvironment 0.0.45 → 0.0.46
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 +1 -1
- 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: cc7ae683362a5f5f5e17fd609c09077b8e894035
|
|
4
|
+
data.tar.gz: ecb32019431058de0d678f80bddfa0c6f6e2bd8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30270ce119f2d71e89c028a26bf9fe6f795969ed12193981688e5f7f574444c08fcbec0ab93cdcc0e5f42635e977becab77cf792524eb46997c03fc34bd219d0
|
|
7
|
+
data.tar.gz: d1aeea03a41f7db77c328daa3c62a242bb362cc88b17cf3918c7249fa79768977656f829ffaf6d14b80d5a7f60d6c62533a8bc0b7cd429b8e805d34c0faf989a
|
data/bin/nixenvironment
CHANGED
|
@@ -538,7 +538,7 @@ def unity_build(unity_platform, unity_path)
|
|
|
538
538
|
ios_project_path = File.join(root_working_dir, UNITY_BUILDS_IOS_PATH)
|
|
539
539
|
|
|
540
540
|
p('Generating IOS project from UNITY project ...')
|
|
541
|
-
unity_success = system("#{unity} -executeMethod NIXBuilder.MakeiOSBuild -projectPath #{root_working_dir.shellescape} -batchmode -logFile -quit -customArgs:path='#{ios_project_path}'")
|
|
541
|
+
unity_success = system("#{unity} -projectPath '#{root_working_dir}' -executeMethod NIXBuilder.MakeiOSBuild -projectPath #{root_working_dir.shellescape} -batchmode -logFile -quit -customArgs:path='#{ios_project_path}'")
|
|
542
542
|
abort('iOS build unity error!') unless unity_success
|
|
543
543
|
p('IOS project was generated.')
|
|
544
544
|
|