From f351d273f7f3e397cce4469d70d20b6c155ec406 Mon Sep 17 00:00:00 2001 From: JxBP <61627369+JxBP@users.noreply.github.com> Date: Sun, 20 Aug 2023 14:27:11 +0000 Subject: [PATCH] watchexec: fix `--restart` example (#10615) `--signal` => `--stop-signal` --- pages/common/watchexec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/watchexec.md b/pages/common/watchexec.md index 297f623b6..324b5dedf 100644 --- a/pages/common/watchexec.md +++ b/pages/common/watchexec.md @@ -17,4 +17,4 @@ - Call/restart `my_server` when any file in the current directory change, sending `SIGKILL` to stop the child process: -`watchexec --restart --signal {{SIGKILL}} {{my_server}}` +`watchexec --restart --stop-signal {{SIGKILL}} {{my_server}}`