diff --git a/README.md b/README.md index 830fef0d..2b5d255d 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ nodemon --watch app --watch libs app/server.js Now nodemon will only restart if there are changes in the `./app` or `./libs` directory. By default nodemon will traverse sub-directories, so there's no need in explicitly including sub-directories. -Don't use unix globbing to pass multiple directories, e.g `--watch ./lib/*`, it won't work. You need a `--watch` flag per directory watched. +Nodemon also supports unix globbing, e.g `--watch './lib/*'`. The globbing pattern must be quoted. ## Specifying extension watch list