Add Brewfile bundle to commonFastlane

This commit is contained in:
Vitaliy Salnikov 2020-05-18 14:45:22 +03:00
parent 0633d7c371
commit 5ede10f8d6
1 changed files with 4 additions and 0 deletions

View File

@ -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")