From 33851d484aed9f519c884a9ce3b0d0d195efade6 Mon Sep 17 00:00:00 2001 From: Vitaliy Salnikov Date: Thu, 21 May 2020 11:45:08 +0300 Subject: [PATCH] Remove Homebrew dependency fetching --- xcode/commonFastfile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index f20e5b0..ae4bac6 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -10,13 +10,6 @@ private_lane :installDependencies do |options| if File.exists? lockFilePath sh("rm -rf #{podsReposPath}") end - - brew_dependencies = "imagemagick" - sh "brew ls --versions #{brew_dependencies}" do |status, output, command| - unless status.success? - sh("brew install #{brew_dependencies}") - end - end if File.exists? "../Gemfile" bundle_install(path: "../.gem") @@ -92,7 +85,7 @@ private_lane :uploadToAppStore do |options| ) end -private_lane :add_shield do |options| +private_lane :addShield do |options| buildNumber = options[:buildNumber] buildDescription = options[:xcconfig_name].scan(/\p{Upper}/)[1..2].join @@ -146,7 +139,7 @@ private_lane :buildConfiguration do |options| if options[:uploadToFabric] syncCodeSigning(options) - add_shield(options) + addShield(options) buildArchive(options) uploadToFirebase(options)