Skip to content

Commit

Permalink
Merge pull request #67 from coveo/DT-7452/build-index-with-creds
Browse files Browse the repository at this point in the history
fix(build): ensure poetry export returns index credentials
  • Loading branch information
jonapich authored Nov 14, 2024
2 parents 600ce57 + 7937d47 commit babaf16
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 babaf16

Please sign in to comment.