We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddb1716 commit bba9c28Copy full SHA for bba9c28
1 file changed
docs/pages/_partials/command_run_watch.mdx
@@ -12,7 +12,16 @@ run_watch --path [MY_PATH] -- [my_command]
12
13
### `--path`, `-p`
14
15
-The paths to watch. Can be patterns in the form of `./**/my-file.txt`.
+The paths to watch. Can be patterns in the form of `"./**/my-file.txt"`.
16
+
17
+Please note that globgs need to be quoted in order to avoid them being expanded
18
+by your shell, for example:
19
20
21
+```
22
+run_watch --path "**/*.go" -- devspace dev
23
24
25
26
```
27
0 commit comments