Skip to content

Commit

Permalink
Merge 1f677f1 into 58c5ef1
Browse files Browse the repository at this point in the history
  • Loading branch information
mykmelez committed Jul 18, 2018
2 parents 58c5ef1 + 1f677f1 commit 3fb6003
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/html/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,10 +308,11 @@ impl Report for Html {
.file_name()
.map(|name| name.to_string_lossy())
.unwrap();
let sub_benchmarks = fs::list_existing_reports(&base_dir)?
let mut sub_benchmarks = fs::list_existing_reports(&base_dir)?
.into_iter()
.map(|sub_path| path_to_individual_benchmark(&sub_path, output_directory))
.collect::<Result<Vec<_>>>()?;
sub_benchmarks.sort_unstable_by_key(|k| k.name.clone());
Ok(IndexBenchmark {
name: name.to_string(),
path: path.join("index.html")
Expand Down

0 comments on commit 3fb6003

Please sign in to comment.