зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1801758: Fix globbing of .git files/directories in moz.yaml exclusions r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D162756
This commit is contained in:
Родитель
bc54aeca37
Коммит
6badb2f981
|
@ -22,7 +22,6 @@ vendoring:
|
|||
|
||||
exclude:
|
||||
# dirs
|
||||
- .github
|
||||
- test
|
||||
# files
|
||||
- .clang-format
|
||||
|
|
|
@ -24,7 +24,6 @@ vendoring:
|
|||
# so just explicitly exclude what we don't want for now
|
||||
exclude:
|
||||
# dirs
|
||||
- .github
|
||||
- cmake
|
||||
- docs
|
||||
- fuzz-in
|
||||
|
|
|
@ -20,7 +20,6 @@ vendoring:
|
|||
- update-moz-build
|
||||
exclude:
|
||||
- .clang-format
|
||||
- .github
|
||||
- CMakeLists.txt
|
||||
- Config.cmake.in
|
||||
- INSTALL.md
|
||||
|
|
|
@ -19,7 +19,6 @@ vendoring:
|
|||
skip-vendoring-steps:
|
||||
- update-moz-build
|
||||
exclude:
|
||||
- .github
|
||||
- configure.ac
|
||||
- docs
|
||||
- INSTALL
|
||||
|
|
|
@ -38,8 +38,6 @@ vendoring:
|
|||
- tools
|
||||
- win32
|
||||
- autogen.sh
|
||||
- .gitignore
|
||||
- .gitlab-ci.yml
|
||||
- .travis.yml
|
||||
- configure.ac
|
||||
- SConstruct
|
||||
|
|
|
@ -49,8 +49,6 @@ vendoring:
|
|||
skip-vendoring-steps: ['update-moz-build']
|
||||
|
||||
exclude:
|
||||
- .gitattributes
|
||||
- .gitignore
|
||||
- third_party/libwebm
|
||||
- tools/
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ from mozbuild.vendor.rewrite_mozbuild import (
|
|||
MozBuildRewriteException,
|
||||
)
|
||||
|
||||
DEFAULT_EXCLUDE_FILES = [".git*"]
|
||||
DEFAULT_EXCLUDE_FILES = [".git*", ".git*/**"]
|
||||
DEFAULT_KEEP_FILES = ["**/moz.build", "**/moz.yaml"]
|
||||
DEFAULT_INCLUDE_FILES = []
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче