Skip to content

Commit

Permalink
make it make sense
Browse files Browse the repository at this point in the history
  • Loading branch information
agahkarakuzu committed Dec 8, 2024
1 parent e87b4cb commit 1fa4622
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion myst_libre/tools/myst_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,13 @@ def build(self, *args, user=None, group=None):
"""
os.chdir(self.build_dir)
self.cprint(f"--> Self env vars {self.env_vars}", "green")
return self.run_command(*args, env_vars=self.env_vars, user=user, group=group)
stdout_log, stderr_log = self.run_command(*args, env_vars=self.env_vars, user=user, group=group)
self.cprint(f"🐞 Command output: {stdout_log}", "light_grey")
if stderr_log is not None:
combined_log = stdout_log + stderr_log
else:
combined_log = stderr_log
return combined_log

def convert(self, input_file, output_file, user=None, group=None):
"""
Expand Down

0 comments on commit 1fa4622

Please sign in to comment.