summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorassayire <66568479+assayire@users.noreply.github.com>2024-11-10 07:56:13 -0800
committerGitHub <noreply@github.com>2024-11-10 10:56:13 -0500
commit52abefaff16f70da044ed56abafc3e25b9ccd7d9 (patch)
treea33a0105f3b75e613a4881e35adb19b587134fef
parent7e64928e31e07fb9c8e63b7c395949722461870f (diff)
docs(fix): Minor fix in documentation related to `--exclude-processing` (#2238)
Using tildes in the gomplate like so will result in error: `*.png: command not found`: ``` $ gomplate --exclude-processing `*.png` --input-dir in/ --output-dir out/ ``` Fixed the command: ``` $ gomplate --exclude-processing '*.png' --input-dir in/ --output-dir out/ ```
-rw-r--r--docs/content/usage.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/usage.md b/docs/content/usage.md
index 280778fe..3b8f4b28 100644
--- a/docs/content/usage.md
+++ b/docs/content/usage.md
@@ -139,7 +139,7 @@ _Note:_ These patterns are _not_ treated as filesystem globs, and so a pattern l
Examples:
```console
-$ gomplate --exclude-processing `*.png` --input-dir in/ --output-dir out/
+$ gomplate --exclude-processing '*.png' --input-dir in/ --output-dir out/
```
This will skip all `*.png` files in the `in/` directory from being processed, and copy them to the `out/` directory.