diff --git a/coveo_stew/stew.py b/coveo_stew/stew.py index f8a27c4..47264ff 100644 --- a/coveo_stew/stew.py +++ b/coveo_stew/stew.py @@ -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")