fix(cli): doom.ps1: ParserError on $PATH

Fix: #8427
This commit is contained in:
Henrik Lissner
2025-06-25 23:17:51 +02:00
parent be73e9685b
commit c55abb1bf7

View File

@ -8,7 +8,7 @@ function Executable-Find {
if ($path) { return $path.Path; }
}
}
throw "Could not find in $PATH: $($args -join ', ')"
throw "Could not find in PATH: $($args -join ', ')"
}
$emacs = if ($env:EMACS) { $env:EMACS } else { Executable-Find "emacs.exe" }