nixenvironment 0.0.25 → 0.0.26
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: 605b6fa33288d71c7dc907579be0b08b71e7ebb6
|
|
4
|
+
data.tar.gz: f1426d8f206151e6ade2101dee8a506dfb615fe0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59b572fe49855d3313ae13275a8fd0ec5169d85965a18abd5ed691eda19ff2bd8bb297572652c09496eed7c5586acbf07cca14b5594b8165be43bcbc24f587e4
|
|
7
|
+
data.tar.gz: 11462788360869cfe945d5a9e8353cb611975e7205d8e8c09bf6c7551edf968a7f2c0c26ad3e2557da0f8f4d9fe26e38dcb0fe45a0c69091f3e5e4c6ac29d69f
|
data/bin/nixenvironment
CHANGED
|
@@ -497,7 +497,7 @@ def unity_build(unity)
|
|
|
497
497
|
ios_project_path = File.join(root_working_dir, UNITY_BUILDS_IOS_PATH)
|
|
498
498
|
|
|
499
499
|
p('Generating IOS project from UNITY project ...')
|
|
500
|
-
unity_success = system("unity -executeMethod NIXBuilder.MakeiOSBuild -projectPath #{root_working_dir} -batchmode -logFile -quit -customArgs:path='#{ios_project_path}'")
|
|
500
|
+
unity_success = system("unity -executeMethod NIXBuilder.MakeiOSBuild -projectPath #{root_working_dir.shellescape} -batchmode -logFile -quit -customArgs:path='#{ios_project_path}'")
|
|
501
501
|
abort('Build unity error!') unless unity_success
|
|
502
502
|
p('IOS project was generated.')
|
|
503
503
|
|