Skip to content

Commit

Permalink
Merge pull request #63 from koenpunt/patch-1
Browse files Browse the repository at this point in the history
true is not a valid configuration name
  • Loading branch information
UnsafePointer authored Apr 10, 2018
2 parents 97e3169 + ff539e9 commit 2d81bb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cocoapods-rome/post_install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2d81bb0

Please sign in to comment.