Skip to content

Commit

Permalink
Only set SYMROOT once per invocation of xcodebuild
Browse files Browse the repository at this point in the history
This was confusing.
  • Loading branch information
Jeff Hui and Tim Jarratt authored and Jeff Hui and Tim Jarratt committed Sep 18, 2014
1 parent 7ffd1fe commit a653c2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ namespace :testbundles do
Shell.with_env("CEDAR_REPORTER_CLASS" => "CDRColorizedReporter") do
Xcode.test(
scheme: APP_NAME,
args: "SYMROOT='#{BUILD_DIR}' -destination 'arch=x86_64'",
args: "-destination 'arch=x86_64'",
logfile: "ocunit-logic-specs.log",
)
end
Expand All @@ -433,7 +433,7 @@ namespace :testbundles do
Xcode.test(
scheme: APP_IOS_NAME,
sdk: "iphonesimulator#{SDK_VERSION}",
args: "ARCHS=i386 SYMROOT='#{BUILD_DIR}' -destination '#{Xcode.destination_for_ios_sdk(SDK_RUNTIME_VERSION)}' -destination-timeout 60",
args: "ARCHS=i386 -destination '#{Xcode.destination_for_ios_sdk(SDK_RUNTIME_VERSION)}' -destination-timeout 60",
logfile: "ocunit-application-specs.log",
)
end
Expand Down

0 comments on commit a653c2b

Please sign in to comment.