fix: remove Unicode em dash from CI PowerShell strings
All checks were successful
Build & Sign Wraith / Build Windows + Sign (push) Successful in 4m3s

PowerShell parser choked on the em dash character in Write-Host
string literals. Replaced with ASCII-safe alternatives and single
quotes to avoid any encoding issues in the CI runner.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell 2026-03-25 13:14:30 -04:00
parent 543bf6b56d
commit ddce484eb9

View File

@ -187,8 +187,8 @@ jobs:
Write-Host "=== Update manifest uploaded ===" Write-Host "=== Update manifest uploaded ==="
} else { } else {
Write-Host "WARNING: No .sig file found — update signing may have failed" Write-Host 'WARNING - No .sig file found, update signing may have failed'
Write-Host "Sig files found" Write-Host 'Sig files found'
Get-ChildItem -Recurse src-tauri\target\release\bundle\nsis\*.sig Get-ChildItem -Recurse src-tauri\target\release\bundle\nsis\*.sig
} }