diff --git a/Updater/Update-Service.ps1 b/Updater/Update-Service.ps1 index 1d2910df4e2abcb8427c2cf39ff0d579a2dd7022..35e34495942db557557c0aa7ae1b32fb0edd77fb 100644 --- a/Updater/Update-Service.ps1 +++ b/Updater/Update-Service.ps1 @@ -583,15 +583,15 @@ if ($ConfigShouldBeUpdated) { } # define which configuration checker executable should be used for testing: -$ConfigTestBinary = "$($InstallationPath)\AutoTxConfigTest.exe" +$ConftestExe = "$($InstallationPath)\AutoTxConfigTest.exe" if ($ServiceShouldBeUpdated) { $UpdPackage = Find-InstallationPackage - $ConfigTestBinary = "$($UpdPackage)\$($ServiceName)\AutoTxConfigTest.exe" + $ConftestExe = "$($UpdPackage)\$($ServiceName)\AutoTxConfigTest.exe" $UpdItems += "service binaries" } # now we're all set and can run the config test: -$ConfigValid, $ConfigSummary = Config-IsValid $ConfigTestBinary $ConfigToTest +$ConfigValid, $ConfigSummary = Config-IsValid $ConftestExe $ConfigToTest # if we don't have a valid configuration we complain and terminate the update: