diff options
author | Brian Coca <bcoca@users.noreply.github.com> | 2021-07-14 15:33:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 15:33:45 -0400 |
commit | 5e271dfc60c2e4f71ad2f4273798bb20d03d4c54 (patch) | |
tree | 920e1812036de436822f1a08cdb46be00d11fc56 /.gitignore | |
parent | 3b861abce13c541c1fc41e59d631e76d2564582a (diff) | |
download | ansible-5e271dfc60c2e4f71ad2f4273798bb20d03d4c54.tar.gz |
gitignore vendored dir (#75255)
but still accept __init__.py
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index e0c057b05a..bf2087bdb4 100644 --- a/.gitignore +++ b/.gitignore @@ -84,6 +84,10 @@ Vagrantfile /lib/ansible_base.egg-info/ # First used in the `devel` branch during Ansible 2.11 development. /lib/ansible_core.egg-info/ +# vendored lib dir +lib/ansible/_vendor/* +!lib/ansible/_vendor/__init__.py +# test stuff /test/integration/cloud-config-*.* !/test/integration/cloud-config-*.*.template .python-version |