Files
yaze/scripts/verify-build-environment.ps1
scawful 3b94b121df 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.
2025-11-01 11:22:00 -04:00

31 KiB