From 5d41174a0d1a3137ffb5b72622b55cd48e15ebda Mon Sep 17 00:00:00 2001 From: Massimiliano Mirra Date: Tue, 7 Feb 2023 12:11:06 +0000 Subject: [PATCH] func,fix: fix stray backquote in shell command --- cookbook/run-command-recipe-watchexec.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/run-command-recipe-watchexec.el b/cookbook/run-command-recipe-watchexec.el index 296dfc2..ffe2611 100644 --- a/cookbook/run-command-recipe-watchexec.el +++ b/cookbook/run-command-recipe-watchexec.el @@ -21,7 +21,7 @@ Requires `watchexec' (https://watchexec.github.io/) to be installed." (lambda () (let ((command-to-run (shell-quote-argument (read-string "Enter command: ")))) - (format "watchexec --clear --watch '%s' `%s'" + (format "watchexec --clear --watch '%s' '%s'" buffer-file command-to-run)))))))