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 e2db41e commit 49abd74Copy full SHA for 49abd74
tools/ci_connector_ops/ci_connector_ops/utils.py
@@ -16,7 +16,13 @@
16
os.chdir(os.path.dirname(os.path.abspath(__file__)))
17
os.chdir('../../..')
18
19
-AIRBYTE_REPO = git.Repo(".")
+# print the current working directory
20
+print("Current working directory:")
21
+print(os.getcwd())
22
+
23
+REPO_ROOT = "."
24
25
+AIRBYTE_REPO = git.Repo(REPO_ROOT)
26
DIFFED_BRANCH = "origin/master"
27
OSS_CATALOG_URL = "https://storage.googleapis.com/prod-airbyte-cloud-connector-metadata-service/oss_catalog.json"
28
CONNECTOR_PATH_PREFIX = "airbyte-integrations/connectors"
0 commit comments