Skip to content

Commit e2a75f5

Browse files
committed
[uucp] warn on incomplete code area
1 parent ae07606 commit e2a75f5

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

uucp/uux.rs

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,11 +357,18 @@ fn execute_uux(
357357

358358
if out_local && !exec_local {
359359
// Output needs to come from remote exec host to local
360-
// The output was written to a file on remote, fetch it
361-
// (This is simplified - in practice we'd need to know the exact output path)
360+
// TODO: fetch output file from remote exec host
361+
eprintln!(
362+
"uux: warning: cross-system output file routing not yet implemented \
363+
(output on local, execution on remote)"
364+
);
362365
} else if !out_local && exec_local {
363366
// Output needs to go from local exec to remote
364-
// Would need to send the output file
367+
// TODO: send output file to remote system
368+
eprintln!(
369+
"uux: warning: cross-system output file routing not yet implemented \
370+
(output on remote, execution on local)"
371+
);
365372
}
366373
// If both on same host, output is already in place
367374
}

0 commit comments

Comments
 (0)