diff --git a/src/molecule/util.py b/src/molecule/util.py index 5e8f1bdefb..e914a0ec51 100644 --- a/src/molecule/util.py +++ b/src/molecule/util.py @@ -323,7 +323,9 @@ def _filter_platforms(config, platform_name): @cache -def find_vcs_root(location="", dirs=(".git", ".hg", ".svn"), default=None) -> str: +def find_vcs_root( + location="", dirs=(".git", ".hg", ".svn", ".config"), default=None, +) -> str: """Return current repository root directory.""" if not location: location = os.getcwd()