Skip to content

Commit

Permalink
docs(fix): Minor fix in documentation related to --exclude-processing
Browse files Browse the repository at this point in the history
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/
```
  • Loading branch information
assayire authored and hairyhenderson committed Nov 10, 2024
1 parent 7e64928 commit 98e3358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 98e3358

Please sign in to comment.