aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-07-11 14:59:58 +0100
committerdiogo464 <[email protected]>2025-07-11 14:59:58 +0100
commit916e97a81aff708edf4dc8162132c764b3921079 (patch)
tree0f6ab0708c866f4d67a7d824fa43ccdfb1ce6e15 /src
parent41705993247d95fe57927f41c659fbbc62ba9344 (diff)
fixed log copying
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 95c5073..25d9d13 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -471,7 +471,7 @@ async fn machine_copy_logs_dir(ctx: &Context, machine: Machine, output_dir: &Pat
471 } 471 }
472 args.push("-r"); 472 args.push("-r");
473 473
474 let source_path = format!("{}:/tmp/oar-p2p-logs", machine.hostname()); 474 let source_path = format!("{}:/tmp/oar-p2p-logs/*", machine.hostname());
475 let destination_path = output_dir.display().to_string(); 475 let destination_path = output_dir.display().to_string();
476 args.push(&source_path); 476 args.push(&source_path);
477 args.push(&destination_path); 477 args.push(&destination_path);