File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
lib/fastlane/plugin/wpmreleasetoolkit/actions/configure Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1414
1515### Bug Fixes
1616
17- _ None _
17+ - Fix ` NoMethodError ` ( ` undefined method 'trigger_action_by_name' for nil:NilClass ` ) when running ` configure_setup ` . [ # 670 ]
1818
1919### Internal Changes
2020
Original file line number Diff line number Diff line change @@ -42,14 +42,14 @@ def self.prepare_repository
4242 original_repo_ref = Fastlane ::Helper ::ConfigureHelper . repo_branch_name
4343 original_repo_ref = repo_hash if original_repo_ref . nil?
4444
45- other_action . sh ( command : "cd #{ repository_path } && git fetch && git checkout #{ file_hash } " , log : false ) unless repo_hash == file_hash
45+ Actions . sh ( "cd #{ repository_path } && git fetch && git checkout #{ file_hash } " , log : false ) unless repo_hash == file_hash
4646
4747 # Run the provided block
4848 yield
4949
5050 ### Restore secrets repo to original branch. If it was originally in a
5151 ### detached HEAD state, we need to use the hash since there's no branch name.
52- other_action . sh ( command : "cd #{ repository_path } && git checkout #{ original_repo_ref } " , log : false )
52+ Actions . sh ( "cd #{ repository_path } && git checkout #{ original_repo_ref } " , log : false )
5353 end
5454
5555 ### Check with the user whether we should overwrite the file, if it exists
You can’t perform that action at this time.
0 commit comments