Add missing parameters to updater scripts
This commit is contained in:
parent
7e97adc1c0
commit
60faa8db90
|
|
@ -25,6 +25,8 @@ param(
|
||||||
[Parameter(Mandatory=$true)]
|
[Parameter(Mandatory=$true)]
|
||||||
[string]$LineupVersion,
|
[string]$LineupVersion,
|
||||||
[switch]$NoPush,
|
[switch]$NoPush,
|
||||||
|
[string]$GitAuthorName = $null,
|
||||||
|
[string]$GitAuthorEmail = $null,
|
||||||
[string[]]$GitCommitArgs = @()
|
[string[]]$GitCommitArgs = @()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,8 @@
|
||||||
#>
|
#>
|
||||||
[cmdletbinding(SupportsShouldProcess = $true)]
|
[cmdletbinding(SupportsShouldProcess = $true)]
|
||||||
param(
|
param(
|
||||||
|
[string]$GitAuthorName = $null,
|
||||||
|
[string]$GitAuthorEmail = $null,
|
||||||
[string[]]$GitCommitArgs = @(),
|
[string[]]$GitCommitArgs = @(),
|
||||||
[switch]$NoCommit,
|
[switch]$NoCommit,
|
||||||
[switch]$Force
|
[switch]$Force
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue