This is an automated email from the ASF dual-hosted git repository. gregdove pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit c18b3dc3305f5754fbbdfdabc1837506874f65f9 Author: greg-dove <[email protected]> AuthorDate: Mon Aug 23 09:31:09 2021 +1200 Small changes to avoid RAT reporting on zero-byte files (apparently only included for FlashBuilder compatibility) --- ApproveRoyale.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ApproveRoyale.xml b/ApproveRoyale.xml index eb8fbce..5107c7c 100644 --- a/ApproveRoyale.xml +++ b/ApproveRoyale.xml @@ -367,6 +367,12 @@ <exclude name="**/*.jpg"/> <exclude name="**/*.mp3"/> <exclude name="**/*.flv"/> + <!-- exclude font (ser) --> + <!-- + Exclude these empty files, as they are empty and therefore don't contain anything + (They are needed for supporting the FlashBuilder product) + --> + <exclude name="**/*.ser"/> <!-- End of binary files --> <!-- JSON doesn't really have a comment format --> <exclude name="**/*.json"/> @@ -432,6 +438,12 @@ <exclude name="**/*.jpg"/> <exclude name="**/*.mp3"/> <exclude name="**/*.flv"/> + <!-- exclude font (ser) --> + <!-- + Exclude these empty files, as they are empty and therefore don't contain anything + (They are needed for supporting the FlashBuilder product) + --> + <exclude name="**/*.ser"/> <!-- End of binary files --> <!-- JSON doesn't really have a comment format --> <exclude name="**/*.json"/>
