Skip to content

Commit 5d41174

Browse files
committed
func,fix: fix stray backquote in shell command
1 parent 2a56b34 commit 5d41174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cookbook/run-command-recipe-watchexec.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Requires `watchexec' (https://watchexec.github.io/) to be installed."
2121
(lambda ()
2222
(let ((command-to-run
2323
(shell-quote-argument (read-string "Enter command: "))))
24-
(format "watchexec --clear --watch '%s' `%s'"
24+
(format "watchexec --clear --watch '%s' '%s'"
2525
buffer-file
2626
command-to-run)))))))
2727

0 commit comments

Comments
 (0)