This commit is contained in:
2026-05-11 08:27:44 +02:00
parent ab5a0c7697
commit 8261a281c4
96 changed files with 271838 additions and 778 deletions

View File

@@ -105,6 +105,14 @@ if ($errors.Count -eq 0) {
Write-Host " Keine verbotenen Dateien in _internal"
}
# 4f) Empfang-Web-Huelle (Shell-EXE) muss mit dem Installer gebundelt werden
$shellExeDist = Join-Path $projectRoot "dist\aza_desktop\AZA_EmpfangShell.exe"
if (-not (Test-Path $shellExeDist)) {
$errors += "AZA_EmpfangShell.exe fehlt in dist\aza_desktop (wird fuer die Empfang-Web-Huelle benoetigt)"
} else {
Write-Host " AZA_EmpfangShell.exe OK (neben aza_desktop.exe)"
}
# 4d) Installer existiert und hat Groesse > 0
if (-not (Test-Path $installerPath)) {
$errors += "Installer nicht gefunden: $installerPath"