ansible/changelogs/fragments/ansible-test-git-submodule.yml
Matt Clay ba273c72d8
Fix ansible-test handling of git submodules. (#65027)
* Revert most of PR #61605 commit e218c9814c

This removes the git error handling that converted all git errors into warnings.

* Fix ansible-test handling of git submodules.
2019-11-19 10:19:03 -08:00

6 lines
427 B
YAML

bugfixes:
- ansible-test now properly handles enumeration of git submodules.
Enumeration is now done with ``git submodule status --recursive`` without specifying ``.`` for the path, since that could cause the command to fail.
Instead, relative paths outside the current directory are filtered out of the results.
Errors from ``git`` commands will now once again be reported as errors instead of warnings.