diff --git a/crates/build-man-pages/build.rs b/crates/build-man-pages/build.rs index 5b0a3d0db..0e8e4883b 100644 --- a/crates/build-man-pages/build.rs +++ b/crates/build-man-pages/build.rs @@ -63,7 +63,8 @@ fn build_man(man_dir: &Path) { Err(e) if e.kind() == std::io::ErrorKind::NotFound => { if env_var("FISH_BUILD_DOCS") == Some("1".to_string()) { panic!( - "Could not find sphinx-build to build man pages.\nInstall sphinx or disable building the docs by setting $FISH_BUILD_DOCS=0." + "Could not find sphinx-build to build man pages.\n\ + Install sphinx or disable building the docs by setting $FISH_BUILD_DOCS=0." ); } rsconf::warn!("Cannot find sphinx-build to build man pages.");