From 3b94b121df7e7202a267141d825418379b776cfb Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 1 Nov 2025 11:22:00 -0400 Subject: [PATCH] fix: remove invalid backtick before colon in PowerShell string Line 205 had '$dir`: $_' which is invalid PowerShell syntax. Changed to '$dir': $_' (regular colon without backtick escape). PowerShell backticks are only needed for: - Escape sequences (`n for newline, `t for tab) - Line continuation - Escaping special chars like $, `, " Colons in strings don't need escaping and the backtick was causing 'missing terminator' parse errors. --- scripts/verify-build-environment.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/verify-build-environment.ps1 b/scripts/verify-build-environment.ps1 index c95ea364..4a3e0b55 100644 --- a/scripts/verify-build-environment.ps1 +++ b/scripts/verify-build-environment.ps1 @@ -202,7 +202,7 @@ function Clean-CMakeCache { $cleaned = $true Write-Status " ✓ Removed '$dir'" "Success" } catch { - Write-Status " ✗ Failed to remove '$dir`: $_" "Error" + Write-Status " ✗ Failed to remove '$dir': $_" "Error" $script:warnings += "Could not fully clean '$dir' (some files may be locked)" } }