pkgs/cli: Add machine to output while uploading sources

Add the `machine` to it's output while uploading sources.
This commit is contained in:
a-kenji
2025-07-21 21:09:07 +02:00
parent 015c09b0e5
commit 3a2be243c0

View File

@@ -91,7 +91,10 @@ def upload_sources(machine: Machine, ssh: Remote) -> str:
proc = run(
cmd,
RunOpts(
env=env, needs_user_terminal=True, error_msg="failed to upload sources"
env=env,
needs_user_terminal=True,
error_msg="failed to upload sources",
prefix=machine.name,
),
)