From 5ede10f8d6c33f393ca43f4dd716532f79c617a0 Mon Sep 17 00:00:00 2001 From: Vitaliy Salnikov Date: Mon, 18 May 2020 14:45:22 +0300 Subject: [PATCH] Add Brewfile bundle to commonFastlane --- xcode/commonFastfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 00aa771..3877d4d 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -10,6 +10,10 @@ private_lane :installDependencies do |options| if File.exists? lockFilePath sh("rm -rf #{podsReposPath}") end + + if File.exists? "../Brewfile" + sh("brew bundle --file ../Brewfile") + end if File.exists? "../Gemfile" bundle_install(path: "../.gem")