From 0e7a2790f73b522b3936e7c4daa4d3c8322c5310 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 4 Feb 2025 20:56:56 +1100 Subject: [PATCH] Fix a typo `s/iscalled/is called` (#3542) --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index d2024d46c82..e81bedca7a6 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -453,7 +453,7 @@ platform :android do is_beta = beta_version?(version) unless skip_prechecks # Match branch names that begin with `release/` - # Skip this check on CI because that action relies on CI env vars, but when this lane iscalled as part of `code_freeze` the branch changed since the CI build started, so that wouldn't work + # Skip this check on CI because that action relies on CI env vars, but when this lane is called as part of `code_freeze` the branch changed since the CI build started, so that wouldn't work ensure_git_branch(branch: '^release/') unless is_ci UI.important("Building version #{version_name_current} (#{build_code_current}) for upload to Google Play Console")