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.
31 KiB
31 KiB