Skip to content

Commit 8ef85f8

Browse files
author
Inkedstinct
committed
feat(main) : Process each results once done, even if it was not zipped (fails before)
1 parent 766428f commit 8ef85f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,6 @@ fn init_directories(logs_directory: &str, inventories_directory: &str, scripts_d
220220
eprintln!("Failed to create directory {}: {}", dir, e);
221221
e
222222
})?;
223-
debug!(
224-
"Successfully created or confirmed existing directory: {}",
225-
dir
226-
);
227223
}
228224
Ok(())
229225
}
@@ -335,6 +331,10 @@ async fn main() -> Result<(), BenchmarkError> {
335331
info!("Skipping jobs generation and submission as requested");
336332
}
337333

334+
for job in jobs.jobs {
335+
results::process_results(&job.results_dir)?;
336+
}
337+
338338

339339
Ok(())
340340
}

0 commit comments

Comments
 (0)