Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions mkosi/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,7 @@ def log_process_failure(sandbox: Sequence[str], cmdline: Sequence[str], returnco
else:
logging.error(f"{cmdline[0]} not found.")
else:
logging.error(
f'"{shlex.join([*sandbox, *cmdline] if ARG_DEBUG.get() else cmdline)}"'
f" returned non-zero exit code {returncode}."
)
logging.error(f'"{shlex.join([*sandbox, *cmdline])}" returned non-zero exit code {returncode}.')


def run(
Expand Down