Skip to content
Open
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
2 changes: 1 addition & 1 deletion craft_providers/actions/snap_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def _get_assertion(query: list[str]) -> bytes:
:raises SnapInstallationError: if 'snap known' call fails
"""
command = snap_cmd.formulate_known_command(query=query)
logger.debug("Executing command on host: %s", command)
logger.debug("Executing command on host: %s", shlex.join(command))
Comment thread
lengau marked this conversation as resolved.
try:
return subprocess.run(command, capture_output=True, check=True).stdout
except subprocess.CalledProcessError as error:
Expand Down
Loading