Skip to content

Commit

Permalink
Replace word
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple committed Jul 31, 2024
1 parent be82f33 commit 56e9f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ lane :merge_release_to_main do
release_branches.first
end

UI.user_error!("`#{release_branch}`` branch does not match the release branch pattern: `release/*`") unless release_branch.include?('release/')
UI.user_error!("`#{release_branch}`` branch does not match the release branch pattern: `release/*`") unless release_branch.start_with?('release/')

sh('git checkout origin/main')
sh('git pull')
Expand Down

0 comments on commit 56e9f24

Please sign in to comment.