File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,13 @@ Import-Module -Scope Local "$PSScriptRoot/../../input.psm1"
44Import-Module - Scope Local " $PSScriptRoot /../../query-state.psm1"
55Import-Module - Scope Local " $PSScriptRoot /../../git.psm1"
66
7- function Register-FinalizeActionXxx ([PSObject ] $finalizeActions ) {
8- $finalizeActions [' xxx' ] = {
9- param (
10- # TODO: add parameters
11- [Parameter ()][AllowNull ()][AllowEmptyCollection ()][System.Collections.ArrayList ] $diagnostics
12- )
7+ function Invoke-XxxFinalizeAction {
8+ param (
9+ # TODO: add parameters
10+ [Parameter ()][AllowNull ()][AllowEmptyCollection ()][System.Collections.ArrayList ] $diagnostics
11+ )
1312
14- return @ {}
15- }
13+ return @ {}
1614}
1715
18- Export-ModuleMember - Function Register-FinalizeActionXxx
16+ Export-ModuleMember - Function Invoke-XxxFinalizeAction
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Import-Module -Scope Local "$PSScriptRoot/../../core.psm1"
22Import-Module - Scope Local " $PSScriptRoot /../../framework.psm1"
33Import-Module - Scope Local " $PSScriptRoot /../../query-state.psm1"
44
5- function Register-LocalActionXxx ([PSObject ] $localActions ) {
5+ function Invoke-XxxLocalAction ([PSObject ] $localActions ) {
66 $localActions [' xxx' ] = {
77 param (
88 # TODO: add parameters
@@ -13,4 +13,4 @@ function Register-LocalActionXxx([PSObject] $localActions) {
1313 }
1414}
1515
16- Export-ModuleMember - Function Register-LocalActionXxx
16+ Export-ModuleMember - Function Invoke-XxxLocalAction
You can’t perform that action at this time.
0 commit comments