We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03dbc51 commit 0fc3d3cCopy full SHA for 0fc3d3c
ckit/config/config_loader.py
@@ -38,7 +38,7 @@ def _load_global(self):
38
if global_commands_dir.exists():
39
yaml_files = []
40
for extension in ["*.yaml", "*.yml"]:
41
- yaml_files.extend(global_commands_dir.glob(extension))
+ yaml_files.extend(global_commands_dir.rglob(extension))
42
logging.debug(f"Found the following global command files: {[str(file) for file in yaml_files]}")
43
if yaml_files:
44
for yaml_file in yaml_files:
0 commit comments