diff --git a/scripts/blaise/install_cma_packages.ps1 b/scripts/blaise/install_cma_packages.ps1 index 68f55b93..0786c4f8 100644 --- a/scripts/blaise/install_cma_packages.ps1 +++ b/scripts/blaise/install_cma_packages.ps1 @@ -112,12 +112,7 @@ try { # Install remaining CMA instruments using Blaise CLI for MySQL data interface database configuration $InstrumentList = 'CMA_Attempts', 'CMA_ContactInfo', 'CMA_Launcher', 'CMA_Logging' foreach ($Instrument in $InstrumentList) { - if (Test-InstrumentInstalled -ServerParkName $CmaServerParkName -InstrumentName $Instrument) { - LogInfo("Instrument '$Instrument' already installed on server park '$CmaServerParkName', skipping...") - } - else { - Install-PackageViaBlaiseCli -ServerParkName $CmaServerParkName -FilePath "$CmaInstrumentPath\$Instrument.bpkg" - } + Install-PackageViaBlaiseCli -ServerParkName $CmaServerParkName -FilePath "$CmaInstrumentPath\$Instrument.bpkg" } LogInfo("Removing CMA working folder '$CmaInstrumentPath'")