File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments