Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bba9c28

Browse files
committedOct 9, 2023
docs: document quoting globs in run_watch
Signed-off-by: Luca Di Maio <[email protected]>
1 parent ddb1716 commit bba9c28

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed
 

‎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)
Please sign in to comment.