Skip to content

Commit

Permalink
fix(build): ensure poetry export returns index credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
dotboris committed Nov 14, 2024
1 parent 600ce57 commit 7937d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coveo_stew/stew.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def build(self, target_path: Path = None) -> Path:

def export(self) -> str:
"""Generates the content of a `requirements.txt` file based on the lock."""
command = ["export"]
command = ["export", "--with-credentials"]
if self.options.build_without_hashes:
command.append("--without-hashes")

Expand Down

0 comments on commit 7937d47

Please sign in to comment.