From 4812bf2a5f271c89355c401f86df1d513f98e51a Mon Sep 17 00:00:00 2001 From: assayire <66568479+assayire@users.noreply.github.com> Date: Wed, 9 Oct 2024 12:55:50 -0700 Subject: [PATCH] Minor fix in documentation related to `--exclude-processing` 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/ ``` --- docs/content/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/usage.md b/docs/content/usage.md index 280778feb..3b8f4b28d 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.