Skip to content

Commit

Permalink
revert source-file-secure changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed Oct 10, 2023
1 parent 7db8c2d commit 3490668
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion airbyte-integrations/connectors/source-file-secure/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@

def local_dependency(name: str) -> str:
"""Returns a path to a local package."""
return f"{name} @ file://{Path.cwd().parent / name}"
if os.environ.get("DAGGER_BUILD"):
return f"{name} @ file:///local_dependencies/{name}"
else:
return f"{name} @ file://{Path.cwd().parent / name}"


MAIN_REQUIREMENTS = [
Expand Down

0 comments on commit 3490668

Please sign in to comment.