I'm creating custom template using giter8. The problem is when I run sbt new file://custom-template.g8, it gives me error on .jar file as well as .webp files. I want the giter8 to not parse these files but to add these files in newly created project using this template.
I've tried to put these in .g8ignore file but it is completely ignoring these, and not adding these files in newly created project. My .g8ignore file looks like:
**/*.jar
**/*.webp
Is there any method to make giter8 to not parse these files, but include it in project?
I'm creating custom template using giter8. The problem is when I run
sbt new file://custom-template.g8
, it gives me error on .jar file as well as .webp files. I want the giter8 to not parse these files but to add these files in newly created project using this template.I've tried to put these in .g8ignore file but it is completely ignoring these, and not adding these files in newly created project. My .g8ignore file looks like:
Is there any method to make giter8 to not parse these files, but include it in project?