Skip to content

Commit bba9c28

Browse files
committed
docs: document quoting globs in run_watch
Signed-off-by: Luca Di Maio <luca.dimaio1@gmail.com>
1 parent ddb1716 commit bba9c28

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

docs/pages/_partials/command_run_watch.mdx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,16 @@ run_watch --path [MY_PATH] -- [my_command]
1212

1313
### `--path`, `-p`
1414

15-
The paths to watch. Can be patterns in the form of `./**/my-file.txt`.
15+
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+
1625

1726
```
1827
```

0 commit comments

Comments
 (0)