don't want to ignore explicit cwd
This commit is contained in:
parent
69db160e2f
commit
588d4080df
1 changed files with 1 additions and 1 deletions
|
@ -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"):
|
||||||
|
|
Loading…
Reference in a new issue