File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lib/fastlane/plugin/wpmreleasetoolkit/actions Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ def self.run(params)
7
7
require_relative '../../helper/android/android_version_helper'
8
8
require_relative '../../helper/android/android_git_helper'
9
9
10
- UI . user_error! ( 'This is not a release branch. Abort.' ) unless other_action . git_branch . start_with? ( 'release/' )
10
+ UI . user_error! ( "Current branch - ' #{ other_action . git_branch } ' - is not a release branch. Abort." ) unless other_action . git_branch . start_with? ( 'release/' )
11
11
12
12
version = Fastlane ::Helper ::Android ::VersionHelper . get_public_version
13
13
message = "Completing code freeze for: #{ version } \n "
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ def self.run(params)
7
7
require_relative '../../helper/ios/ios_version_helper'
8
8
require_relative '../../helper/ios/ios_git_helper'
9
9
10
- UI . user_error! ( 'This is not a release branch. Abort.' ) unless other_action . git_branch . start_with? ( 'release/' )
10
+ UI . user_error! ( "Current branch - ' #{ other_action . git_branch } ' - is not a release branch. Abort." ) unless other_action . git_branch . start_with? ( 'release/' )
11
11
12
12
version = Fastlane ::Helper ::Ios ::VersionHelper . get_public_version
13
13
message = "Completing code freeze for: #{ version } \n "
You can’t perform that action at this time.
0 commit comments