Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(fix): 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/ ```
- Loading branch information