From 9e8ec6eac73364d4ccd4d8a5ceaa16001bbc5c6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 12 Dec 2018 14:57:28 +0100 Subject: [PATCH] run pod only for ios MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski Signed-off-by: yenda --- ci/mobile.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/mobile.groovy b/ci/mobile.groovy index e7eb5cc590..3fc52b3d53 100644 --- a/ci/mobile.groovy +++ b/ci/mobile.groovy @@ -53,11 +53,11 @@ def prep(type = 'nightly') { /* npm deps and status-go download */ sh "make prepare-${env.BUILD_PLATFORM}" /* generate ios/StatusIm.xcworkspace */ - dir('ios') { - if (env.BUILD_PLATFORM == 'ios') { + if (env.BUILD_PLATFORM == 'ios') { + dir('ios') { podUpdate() + sh 'pod install --silent' } - sh 'pod install --silent' } }