In Bamboos artifact definition I need to make a Copy Pattern which includes and excludes some filetypes. Is it possible to write this type of pattern in Bamboo?
For example I want all files excluding .txt
I need something like this: **/*, (this shoudl be excluded)**/*.txt
Is negation possible?
I see in the Ant apache docs that this is a way of includng and excluding:
<delete dir="${dist}">
<include name="**/images/*"/>
<exclude name="**/*.gif"/>
</delete>
Am I supposed to paste a similar block into the Copy Pattern field in Bamboo artifact definition?