Skip to content

Commit b451702

Browse files
authored
docs: fix some typos
1 parent acc7caf commit b451702

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ does.
9999

100100
You could quote globstars as a part of input:
101101
```bash
102-
copyfiles some.json "./some_folder/*.json" ./dist/ && echo 'JSON files copied.'
102+
copyfiles some.json "./some_folder/*.json" "./dist/" && echo 'JSON files copied.'
103103
```
104104

105105
You can use the `-e` option to exclude some files from the pattern, so to exclude all files ending in `".test.js"` you could do
106106

107107
```bash
108-
copyfiles "**/*.test.js" -f ./foo/**/*.js out -e
108+
copyfiles "**/*.test.js" -f "./foo/**/*.js" out -e
109109
```
110110

111111
> [!NOTE]

0 commit comments

Comments
 (0)