From ff3a54fa932e3da77606b473ec1d1ee659564fda Mon Sep 17 00:00:00 2001 From: Mauricio Hanika Date: Thu, 1 Nov 2018 10:56:34 +0100 Subject: [PATCH] Add post compile hook --- lib/cocoapods-rome/post_install.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/cocoapods-rome/post_install.rb b/lib/cocoapods-rome/post_install.rb index f069ee3..eb9cda2 100644 --- a/lib/cocoapods-rome/post_install.rb +++ b/lib/cocoapods-rome/post_install.rb @@ -122,4 +122,8 @@ def copy_dsym_files(dsym_destination, configuration) copy_dsym_files(sandbox_root.parent + 'dSYM', configuration) if enable_dsym build_dir.rmtree if build_dir.directory? + + if user_options["post_compile"] + user_options["post_compile"].call(installer_context) + end end