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 *.log
core.* core.*
!core.png !core.png
!core.py
# python files
*.egg-info
__pycache__

View File

@ -5,7 +5,7 @@
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
@ -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)