mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 04:05:39 +00:00
GP-0: Backporting ignoring of python files
This commit is contained in:
parent
2b4036d314
commit
cc0b3cfb11
5
.gitignore
vendored
5
.gitignore
vendored
@ -86,3 +86,8 @@ Release
|
|||||||
*.log
|
*.log
|
||||||
core.*
|
core.*
|
||||||
!core.png
|
!core.png
|
||||||
|
!core.py
|
||||||
|
|
||||||
|
# python files
|
||||||
|
*.egg-info
|
||||||
|
__pycache__
|
||||||
|
@ -135,6 +135,8 @@ def Map<String, List<String>> getIpForModule(Project p) {
|
|||||||
exclude "**/data/build.xml" // language build file (generated for dev only)
|
exclude "**/data/build.xml" // language build file (generated for dev only)
|
||||||
exclude "**/.vs/**"
|
exclude "**/.vs/**"
|
||||||
exclude "**/*.vcxproj.user"
|
exclude "**/*.vcxproj.user"
|
||||||
|
exclude '**/__pycache__'
|
||||||
|
exclude '**/*.egg-info'
|
||||||
}
|
}
|
||||||
tree.each { file ->
|
tree.each { file ->
|
||||||
String ip = getIp(p.projectDir, file)
|
String ip = getIp(p.projectDir, file)
|
||||||
|
Loading…
Reference in New Issue
Block a user