Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Become compatible with the new Fastlane version
Browse files Browse the repository at this point in the history
  • Loading branch information
mac-cain13 committed Jun 23, 2018
1 parent 194293c commit 2a6c02b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lane :release do |options|
if options[:allow_dirty_branch] != true
ensure_git_status_clean
else
Helper.log.info "Skipping the 'git status clean' check!".yellow
UI.message "Skipping the 'git status clean' check!".yellow
end

git_pull
Expand All @@ -23,7 +23,7 @@ lane :release do |options|
end

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

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

0 comments on commit 2a6c02b

Please sign in to comment.