add bundle install call
This commit is contained in:
parent
2cd0b029d5
commit
94a72409e9
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue