From 4710abaa7592b7db685cf426b851e3f9c69d7180 Mon Sep 17 00:00:00 2001 From: sunasrd-byte Date: Fri, 7 Aug 2026 09:22:36 +0200 Subject: [PATCH] Build the git-detected check mark from its code point install.ps1 is UTF-8 without a BOM, so Windows PowerShell 5.1 decodes it as CP1252, where the literal U+2713 on the "git detected" line becomes a smart quote that terminates the enclosing string. The script then fails to parse and installs nothing; only `irm ... | iex` was unaffected, since that decodes as UTF-8 over HTTP. --- install/powershell/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/powershell/install.ps1 b/install/powershell/install.ps1 index 89bc7a9..9922f3f 100644 --- a/install/powershell/install.ps1 +++ b/install/powershell/install.ps1 @@ -195,7 +195,7 @@ if (-not (Test-GitAvailable)) { Assert-Git } -Write-Host "${GREEN}✓${NC} git detected" +Write-Host "${GREEN}${CHECK} ${NC} git detected" Write-Host "" try {