Commit 588d4080 by Chris Jacobs

don't want to ignore explicit cwd

parent 69db160e
...@@ -49,7 +49,7 @@ class InventoryDirectory(object): ...@@ -49,7 +49,7 @@ class InventoryDirectory(object):
# used when run specifically # used when run specifically
continue continue
# Skip hidden files # Skip hidden files
if i.startswith('.'): if i.startswith('.') and not i.startswith('./'):
continue continue
# These are things inside of an inventory basedir # These are things inside of an inventory basedir
if i in ("host_vars", "group_vars", "vars_plugins"): if i in ("host_vars", "group_vars", "vars_plugins"):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment