Skip to content

Commit 5b45b37

Browse files
authored
Merge pull request #1865 from Kobzol/cli-improve-message
Improve message printed when the site starts
2 parents de1090c + e2ee3f6 commit 5b45b37

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

site/src/main.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,7 @@ async fn main() {
3838
eprintln!("Loading complete but no data identified; exiting.");
3939
std::process::exit(1);
4040
}
41-
eprintln!(
42-
"Loading complete; {} commits and {} artifacts",
43-
commits, artifacts,
44-
);
41+
eprintln!("Loading complete; found {} artifacts", commits + artifacts);
4542
eprintln!(
4643
"View the results in a web browser at 'http://localhost:{port}/compare.html'"
4744
);

0 commit comments

Comments
 (0)