mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
Fixes missing string ending for Ticket
This commit is contained in:
parent
7b8f74cd4f
commit
9271d7b646
1 changed files with 1 additions and 1 deletions
|
|
@ -361,7 +361,7 @@ function Start-IcingaAgentInstallWizard()
|
||||||
if ([string]::IsNullOrEmpty($Ticket)) {
|
if ([string]::IsNullOrEmpty($Ticket)) {
|
||||||
$InstallerArguments += "-Ticket ''";
|
$InstallerArguments += "-Ticket ''";
|
||||||
} else {
|
} else {
|
||||||
$InstallerArguments += "-Ticket '$Ticket";
|
$InstallerArguments += "-Ticket '$Ticket'";
|
||||||
}
|
}
|
||||||
$InstallerArguments += "-EmptyTicket $EmptyTicket"
|
$InstallerArguments += "-EmptyTicket $EmptyTicket"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue