From 61db2dabdd0648483277f567b742fdea3b938dd3 Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Tue, 20 Feb 2018 17:05:35 +0100
Subject: [PATCH] Rename variable.

---
 Updater/Update-Service.ps1 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Updater/Update-Service.ps1 b/Updater/Update-Service.ps1
index 1d2910d..35e3449 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:
-- 
GitLab