Skip to content

Commit

Permalink
cli: Show conan command being executed in verbose mode
Browse files Browse the repository at this point in the history
  • Loading branch information
cassava committed May 6, 2024
1 parent 98ec84e commit f7f2aee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cli/cloe_launch/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ def _prepare_virtualenv(self, with_json: bool = False) -> None:
for arg in self.conan_args:
conan_cmd.append(arg)
conan_cmd.append(self.profile_path)
logging.debug(f"Exec: {' '.join(conan_cmd)}")
result = subprocess.run(conan_cmd, check=False, capture_output=self.capture_output)
if result.returncode == 0:
# Short-circuit out if everything is fine.
Expand Down

0 comments on commit f7f2aee

Please sign in to comment.