Skip to content

Commit 5e6ec2f

Browse files
graycreateclaude
andcommitted
fix: add Fastlane UI import to changelog_helper
- Changed from Fastlane.const_defined?(:UI) to defined?(UI) - Fixes NameError: uninitialized constant ChangelogHelper::UI 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ed48a36 commit 5e6ec2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/changelog_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
module ChangelogHelper
77
# Import Fastlane's UI for logging
8-
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
8+
UI = FastlaneCore::UI unless defined?(UI)
99
# Extract changelog for a specific version from CHANGELOG.md
1010
# @param version [String] The version to extract (e.g., "1.1.1")
1111
# @return [String] The changelog content for the specified version

0 commit comments

Comments
 (0)