Skip to content

Commit

Permalink
func,fix: fix stray backquote in shell command
Browse files Browse the repository at this point in the history
  • Loading branch information
bard committed Feb 7, 2023
1 parent 2a56b34 commit 5d41174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cookbook/run-command-recipe-watchexec.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)))))))

Expand Down

0 comments on commit 5d41174

Please sign in to comment.