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