From 9edc243a0d00c58576d30d595173f5e3b5c7d261 Mon Sep 17 00:00:00 2001 From: erichoog Date: Tue, 21 Jan 2025 21:42:04 -0500 Subject: [PATCH] Fix ansible#4142 - config file in proj dir --- src/molecule/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/molecule/util.py b/src/molecule/util.py index 21afb7aa1..d4385feb6 100644 --- a/src/molecule/util.py +++ b/src/molecule/util.py @@ -429,7 +429,7 @@ def _filter_platforms( @cache def find_vcs_root( location: str | Path = "", - dirs: tuple[str, ...] = (".git", ".hg", ".svn"), + dirs: tuple[str, ...] = (".git", ".hg", ".svn", ".config"), default: str = "", ) -> str: """Return current repository root directory.