Skip to content

Commit ab6216d

Browse files
committed
Remove trailing whitespaces in android_bump_version_hotfix.rb
I'm about to do some work here so I'm committing this change first to make the incremental diffs cleaner.
1 parent 833e1f7 commit ab6216d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_bump_version_hotfix.rb

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ module Actions
33
class AndroidBumpVersionHotfixAction < Action
44
def self.run(params)
55
UI.message "Bumping app release version for hotfix..."
6-
6+
77
require_relative '../../helper/android/android_git_helper.rb'
88
Fastlane::Helpers::AndroidGitHelper.branch_for_hotfix(params[:previous_version_name], params[:version_name])
99
create_config(params[:previous_version_name], params[:version_name], params[:version_code])
1010
show_config()
11-
11+
1212
UI.message "Updating build.gradle..."
13-
Fastlane::Helpers::AndroidVersionHelper.update_versions(@new_version, @current_version_alpha)
13+
Fastlane::Helpers::AndroidVersionHelper.update_versions(@new_version, @current_version_alpha)
1414
UI.message "Done!"
1515

1616
Fastlane::Helpers::AndroidGitHelper.bump_version_hotfix(params[:version_name])
17-
17+
1818
UI.message "Done."
1919
end
2020

@@ -31,16 +31,16 @@ def self.details
3131
end
3232

3333
def self.available_options
34-
# Define all options your action supports.
35-
34+
# Define all options your action supports.
35+
3636
# Below a few examples
3737
[
3838
FastlaneCore::ConfigItem.new(key: :version_name,
39-
env_name: "FL_ANDROID_BUMP_VERSION_HOTFIX_VERSION",
40-
description: "The version of the hotfix",
39+
env_name: "FL_ANDROID_BUMP_VERSION_HOTFIX_VERSION",
40+
description: "The version of the hotfix",
4141
is_string: true),
4242
FastlaneCore::ConfigItem.new(key: :version_code,
43-
env_name: "FL_ANDROID_BUMP_VERSION_HOTFIX_CODE",
43+
env_name: "FL_ANDROID_BUMP_VERSION_HOTFIX_CODE",
4444
description: "The version of the hotfix"),
4545
FastlaneCore::ConfigItem.new(key: :previous_version_name,
4646
env_name: "FL_ANDROID_BUMP_VERSION_HOTFIX_PREVIOUS_VERSION",
@@ -57,7 +57,7 @@ def self.is_supported?(platform)
5757
platform == :android
5858
end
5959

60-
private
60+
private
6161
def self.create_config(previous_version, new_version_name, new_version_code)
6262
@current_version = Fastlane::Helpers::AndroidVersionHelper.get_release_version()
6363
@current_version_alpha = Fastlane::Helpers::AndroidVersionHelper.get_alpha_version()

0 commit comments

Comments
 (0)