I have bash commands that copies files and folders to a target directory. After all files/folders are copied, I need to check if I need to delete a specific folder. If false, delete the directory. In helm, how do I negate the boolean true or false
Something like:
{{- if not .Values.copyExamples }}
--delete the files
{{- end }}