From c55abb1bf72bd773c015e5b4449b7a4efa1de8a0 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 25 Jun 2025 23:17:51 +0200 Subject: [PATCH] fix(cli): doom.ps1: ParserError on $PATH Fix: #8427 --- bin/doom.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doom.ps1 b/bin/doom.ps1 index 05f2ce168..560b13542 100644 --- a/bin/doom.ps1 +++ b/bin/doom.ps1 @@ -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" }