From 9271d7b6461e20c0f231737102ef5d525b21c17d Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Tue, 5 Nov 2019 09:40:14 +0100 Subject: [PATCH] Fixes missing string ending for Ticket --- lib/core/icingaagent/misc/Start-IcingaAgentInstallWizard.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/icingaagent/misc/Start-IcingaAgentInstallWizard.psm1 b/lib/core/icingaagent/misc/Start-IcingaAgentInstallWizard.psm1 index 582e244..e740417 100644 --- a/lib/core/icingaagent/misc/Start-IcingaAgentInstallWizard.psm1 +++ b/lib/core/icingaagent/misc/Start-IcingaAgentInstallWizard.psm1 @@ -361,7 +361,7 @@ function Start-IcingaAgentInstallWizard() if ([string]::IsNullOrEmpty($Ticket)) { $InstallerArguments += "-Ticket ''"; } else { - $InstallerArguments += "-Ticket '$Ticket"; + $InstallerArguments += "-Ticket '$Ticket'"; } $InstallerArguments += "-EmptyTicket $EmptyTicket" }