From ff539e949ef9b0f5c062433f70ed293fdf433c32 Mon Sep 17 00:00:00 2001 From: Koen Punt Date: Tue, 10 Apr 2018 14:33:06 +0200 Subject: [PATCH] true is not a valid configuration name defaulting to `Debug` is probably the sensible thing to do here. --- lib/cocoapods-rome/post_install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cocoapods-rome/post_install.rb b/lib/cocoapods-rome/post_install.rb index fb3309d..058379a 100644 --- a/lib/cocoapods-rome/post_install.rb +++ b/lib/cocoapods-rome/post_install.rb @@ -62,7 +62,7 @@ def copy_dsym_files(dsym_destination, configuration) Pod::HooksManager.register('cocoapods-rome', :post_install) do |installer_context, user_options| enable_dsym = user_options.fetch('dsym', true) - configuration = user_options.fetch('configuration', true) + configuration = user_options.fetch('configuration', 'Debug') if user_options["pre_compile"] user_options["pre_compile"].call(installer_context) end