[bacon-ui] Always set the deployment target in the env.

This commit is contained in:
Eloy Durán
2014-10-29 18:11:11 +01:00
parent 91adde9cf9
commit f151cf4fe3

View File

@@ -12,6 +12,10 @@ Motion::Project::App.setup do |app|
#app.archs['iPhoneSimulator'] = ['x86_64']
app.spec_files.insert(1, *FileList['../../lib/motion/util/version.rb', '../helpers/*.rb'])
app.deployment_target = ENV['deployment_target'] if ENV['deployment_target']
if ENV['deployment_target']
app.deployment_target = ENV['deployment_target']
else
ENV['deployment_target'] = app.deployment_target
end
end