-
What I would like to do is to wrap archived files in a directory, but have the directory with a different name than the archive file itself. Currently I am doing this which leads to the same name between archive file and wrap folder
Is there a way to also have name template for the wrap directory? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Right now its not possible, no... |
Beta Was this translation helpful? Give feedback.
-
Actually @caarlos0 after reading through the codebase to try to contribute, I realize that this functionality is already possible. |
Beta Was this translation helpful? Give feedback.
Actually @caarlos0 after reading through the codebase to try to contribute, I realize that this functionality is already possible.
Turns out
wrap_in_directory
doesn't only take intrue
andfalse
but also name template.So I could do something like
wrap_in_driectory: {{ .ProjectName }}
etc.