Commit 8f23ffc8 authored by Fabio Pelosin's avatar Fabio Pelosin

[Integration] Disable xcproj in Xcodeproj

parent 79047207
...@@ -18,7 +18,7 @@ GIT ...@@ -18,7 +18,7 @@ GIT
GIT GIT
remote: https://github.com/CocoaPods/Xcodeproj.git remote: https://github.com/CocoaPods/Xcodeproj.git
revision: 7dd77ed01ce5e2cfddc2dc9307a8cfdf9ce78e52 revision: 13733a36b29d2a9698c3e2563b52a0b6339e90df
branch: master branch: master
specs: specs:
xcodeproj (0.18.0) xcodeproj (0.18.0)
......
Subproject commit b720c71b6896dd8523e937286eaa873ed74ded02 Subproject commit a417336897acca5654ea950fca1ae568f4399b97
...@@ -89,7 +89,8 @@ end ...@@ -89,7 +89,8 @@ end
# environment. # environment.
# #
def launch_binary(arguments, folder) def launch_binary(arguments, folder)
command = "CP_AGGRESSIVE_CACHE=TRUE #{POD_BINARY} #{arguments} --verbose --no-ansi 2>&1" environment = 'CP_AGGRESSIVE_CACHE=TRUE XCODEPROJ_DISABLE_XCPROJ=TRUE '
command = "#{environment} #{POD_BINARY} #{arguments} --verbose --no-ansi 2>&1"
Dir.chdir(TMP_DIR + folder) do Dir.chdir(TMP_DIR + folder) do
output = `#{command}` output = `#{command}`
it "$ pod #{arguments}" do it "$ pod #{arguments}" do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment