From b94b83be72bd2834e0f9e802ec4425474f5770d2 Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Mon, 18 Jun 2012 23:45:01 +0200 Subject: [PATCH] fix a regression in 'rake simulator' introduced by 01315ce30 - also, the 'deployment_target' env variable becomes 'target' --- lib/motion/project.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/motion/project.rb b/lib/motion/project.rb index 1713d800..b8546cf8 100644 --- a/lib/motion/project.rb +++ b/lib/motion/project.rb @@ -61,7 +61,7 @@ end desc "Run the simulator" task :simulator => ['build:simulator'] do app = App.config.app_bundle('iPhoneSimulator') - target = ENV['deployment_target'] || App.config.deployment_target + target = ENV['target'] || App.config.sdk_version # Cleanup the simulator application sandbox, to avoid having old resource files there. if ENV['clean']