From 6a21d56c86675213fff30f56c169a88c82111770 Mon Sep 17 00:00:00 2001 From: Fedor Korotkov Date: Tue, 8 Apr 2025 11:09:50 -0400 Subject: [PATCH] Install fastlane via bundler (#228) As recommended by docs and since we have newer Ruby version from rbenv --- templates/xcode.pkr.hcl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/xcode.pkr.hcl b/templates/xcode.pkr.hcl index 7a3bb22..bd13d22 100644 --- a/templates/xcode.pkr.hcl +++ b/templates/xcode.pkr.hcl @@ -202,9 +202,10 @@ build { provisioner "shell" { inline = [ "source ~/.zprofile", - "brew install libimobiledevice ideviceinstaller ios-deploy fastlane carthage", + "brew install libimobiledevice ideviceinstaller ios-deploy carthage", "brew install xcbeautify", "gem update", + "gem install fastlane", "gem install cocoapods", "gem install xcpretty", "gem uninstall --ignore-dependencies ffi && gem install ffi -- --enable-libffi-alloc"