18 lines
477 B
PowerShell
18 lines
477 B
PowerShell
|
|
# Lokaler Dev-Start: Chat-only Host Testbuild v1
|
||
|
|
|
||
|
|
$env:AZA_DOKU_PROMPT_TEST = "1"
|
||
|
|
|
||
|
|
Set-Location $PSScriptRoot
|
||
|
|
|
||
|
|
Write-Host "Starte AzA Chat-only Testbuild test_chat_only_host_update_v1..."
|
||
|
|
|
||
|
|
$testExe = Join-Path $PSScriptRoot "dist\test_chat_only_host_update_v1\AZA_Chat.exe"
|
||
|
|
|
||
|
|
if (-not (Test-Path $testExe)) {
|
||
|
|
Write-Error "Testbuild nicht gefunden: $testExe`nBitte zuerst build_test_chat_only_host.ps1 ausfuehren."
|
||
|
|
exit 1
|
||
|
|
}
|
||
|
|
|
||
|
|
Set-Location (Split-Path $testExe)
|
||
|
|
& $testExe
|