From 94a72409e9b7c018666e27fd1020ec89e76a288b Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Thu, 29 Aug 2019 12:54:49 +0300 Subject: [PATCH] add bundle install call --- xcode/commonFastfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 06cb474..ec19eae 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -9,6 +9,8 @@ private_lane :installDependencies do |options| sh("rm -rf #{podsReposPath}") end + bundle_install() + if File.exists? "../Cartfile" begin carthage(command: "bootstrap", platform: "iOS") @@ -214,7 +216,7 @@ lane :ManuallyUpdateCodeSigning do |options| shallow_clone = false branch = 'fastlane_certificates' - storage_conf = lambda do + storage_conf = lambda do new_storage = Match::Storage.for_mode('git', { git_url: git_url, shallow_clone: shallow_clone, git_branch: branch, clone_branch_directly: false}) new_storage.download return new_storage @@ -257,7 +259,7 @@ lane :ManuallyUpdateCodeSigning do |options| storage = storage_conf.call encryption = encryption_conf_for_storage.call(storage) - files_to_delete = files_diff.map do |file| + files_to_delete = files_diff.map do |file| old_file = file old_file.slice! old_directory new_file = File.join(storage.working_directory, old_file)