Skip to content

Commit a26138f

Browse files
committed
Make printed site URL clickable in some terminals
Adding `http://` to the printed site URL causes some terminal emulators to treat it as a Ctrl/Cmd clickable link, which enables easily launching the site in the browser.
1 parent ef8948c commit a26138f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ async fn main() {
4040
"Loading complete; {} commits and {} artifacts",
4141
commits, artifacts,
4242
);
43-
eprintln!("View the results in a web browser at 'localhost:2346/compare.html'");
43+
eprintln!("View the results in a web browser at 'http://localhost:2346/compare.html'");
4444
// Spawn off a task to post the results of any commit results that we
4545
// are now aware of.
4646
site::github::post_finished(&res).await;

0 commit comments

Comments
 (0)