GP-0: Backporting ignoring of python files

This commit is contained in:
Ryan Kurtz 2024-09-18 12:11:50 -04:00
parent 2b4036d314
commit cc0b3cfb11
2 changed files with 8 additions and 1 deletions

5
.gitignore vendored
View File

@ -86,3 +86,8 @@ Release
*.log
core.*
!core.png
!core.py
# python files
*.egg-info
__pycache__

View File

@ -135,6 +135,8 @@ def Map<String, List<String>> getIpForModule(Project p) {
exclude "**/data/build.xml" // language build file (generated for dev only)
exclude "**/.vs/**"
exclude "**/*.vcxproj.user"
exclude '**/__pycache__'
exclude '**/*.egg-info'
}
tree.each { file ->
String ip = getIp(p.projectDir, file)