There was an error while loading. Please reload this page.
1 parent 7538d27 commit 37cf511Copy full SHA for 37cf511
airbyte_cdk/utils/connector_paths.py
@@ -69,6 +69,9 @@ def _find_in_adjacent_dirs(current_dir: Path) -> Path | None:
69
70
current_dir = from_dir.resolve().absolute()
71
while current_dir != current_dir.parent: # abort when we reach file system root
72
+ if _is_airbyte_repo_root(current_dir):
73
+ return current_dir
74
+
75
found_dir = _find_in_adjacent_dirs(current_dir)
76
if found_dir:
77
return found_dir
0 commit comments