Skip to content

Commit 2a6c02b

Browse files
committed
Become compatible with the new Fastlane version
1 parent 194293c commit 2a6c02b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastlane/Fastfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ lane :release do |options|
88
if options[:allow_dirty_branch] != true
99
ensure_git_status_clean
1010
else
11-
Helper.log.info "Skipping the 'git status clean' check!".yellow
11+
UI.message "Skipping the 'git status clean' check!".yellow
1212
end
1313

1414
git_pull
@@ -23,7 +23,7 @@ lane :release do |options|
2323
end
2424

2525
currentVersion = version_get_podspec()
26-
Helper.log.info "Current R.swift.Library podspec version is #{currentVersion}"
26+
UI.message "Current R.swift.Library podspec version is #{currentVersion}"
2727

2828
bumpType = prompt(text: "What kind of release is this? (major/minor/patch/custom)".green, boolean: false, ci_input: "")
2929
isPrerelease = false

0 commit comments

Comments
 (0)