From f6ff137e2875aec2b0b8f474a96c5e3350744fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eloy=20Dur=C3=A1n?= Date: Thu, 4 Dec 2014 18:10:33 +0100 Subject: [PATCH] [WatchKit] Make verbose vs normal work. --- lib/motion/project/template/ios.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/motion/project/template/ios.rb b/lib/motion/project/template/ios.rb index 492fdcaf..33a548f3 100644 --- a/lib/motion/project/template/ios.rb +++ b/lib/motion/project/template/ios.rb @@ -88,7 +88,7 @@ task :simulate_watch_app do app = App.config.app_bundle('iPhoneSimulator') sim = File.join(App.config.bindir, 'watch-sim') #App.info 'Simulate', app - sh "'#{sim}' '#{app}'" + sh "'#{sim}' '#{app}' #{App::VERBOSE ? '1' : '0'}" end desc "Run the simulator"