disable the xcarchive creation for now

This commit is contained in:
Laurent Sansonetti
2012-04-21 17:42:31 +02:00
parent b88c377bc9
commit 72696b3f98
2 changed files with 3 additions and 1 deletions

View File

@@ -98,7 +98,7 @@ namespace :archive do
App.archive
end
desc "Create an .ipa and .xcarchive for release (AppStore)"
desc "Create an .ipa for release (AppStore)"
task :release do
App.config_mode = :release
Rake::Task["build:device"].execute

View File

@@ -403,6 +403,7 @@ PLIST
sh "/bin/cp #{tmp}/archive.zip \"#{archive}\""
end
=begin
# Create .xcarchive. Only in release mode.
if config.release?
xcarchive = File.join(File.dirname(app_bundle), config.name + '.xcarchive')
@@ -431,6 +432,7 @@ PLIST
end
end
end
=end
end
end
end; end