From e87332ca4ec02a5597ed0898541da2c33d086df6 Mon Sep 17 00:00:00 2001 From: Watson Date: Tue, 24 Feb 2015 21:02:57 +0900 Subject: [PATCH] [libdwarf] embed dSYM with development mode only by default --- lib/motion/project/xcode_config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/motion/project/xcode_config.rb b/lib/motion/project/xcode_config.rb index 908a8d64..54f6fe71 100644 --- a/lib/motion/project/xcode_config.rb +++ b/lib/motion/project/xcode_config.rb @@ -49,7 +49,7 @@ module Motion; module Project; @entitlements = {} @delegate_class = 'AppDelegate' @spec_mode = false - @embed_dsym = true + @embed_dsym = (development? ? true : false) @vendor_projects = [] @version = '1.0' end