Always show the "serving on" info for `mdbook serve`.

This commit is contained in:
Eric Huss 2022-07-01 14:36:18 -07:00
parent 4c303c3b1d
commit 1d2b720ebe
1 changed files with 3 additions and 2 deletions

View File

@ -102,9 +102,10 @@ pub fn execute(args: &ArgMatches) -> Result<()> {
serve(build_dir, sockaddr, reload_tx, &file_404);
});
let serving_url = format!("http://{}", address);
info!("Serving on: {}", serving_url);
if open_browser {
let serving_url = format!("http://{}", address);
info!("Serving on: {}", serving_url);
open(serving_url);
}