From 616489bbf20dbe1f5cb10efb3aed90d36b89bb8b Mon Sep 17 00:00:00 2001 From: Pedro Pombeiro Date: Mon, 30 Sep 2019 13:43:29 +0200 Subject: [PATCH] Add `pod-install` Makefile target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index eaee3c5712..f8f7c3572a 100644 --- a/Makefile +++ b/Makefile @@ -101,6 +101,10 @@ disable-githooks: ##@prepare Disables lein githooks -e 's|:pre-commit|;; :pre-commit|' project.clj; \ rm project.clj~ +pod-install: export TARGET_OS := ios +pod-install: ##@prepare Run 'pod install' to install podfiles and update Podfile.lock + cd ios && pod install; cd -- + #---------------- # Release builds #----------------