From 61dc1da645b452943097c6b9dbbdb7eca2e7c469 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 7 Sep 2024 01:20:37 -0400 Subject: [PATCH] fix(cli): doom.ps1: interpolated variable in error message --- bin/doom.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doom.ps1 b/bin/doom.ps1 index be190b2f8..b66f95526 100644 --- a/bin/doom.ps1 +++ b/bin/doom.ps1 @@ -1,7 +1,7 @@ # bin/doom.ps1 if (!(Get-Command -Erroraction silentlycontinue emacs.exe)) { - echo "Couldn't find emacs.exe in your $PATH." + echo "Couldn't find emacs.exe in your PATH." exit 1 }