diff --git a/src/rustup-utils/src/raw.rs b/src/rustup-utils/src/raw.rs index 5c91abb221..20b12c350b 100644 --- a/src/rustup-utils/src/raw.rs +++ b/src/rustup-utils/src/raw.rs @@ -367,7 +367,7 @@ pub fn find_cmd<'a>(cmds: &[&'a str]) -> Option<&'a str> { pub fn open_browser(path: &Path) -> io::Result { #[cfg(not(windows))] fn inner(path: &Path) -> io::Result { - let commands = ["xdg-open", "open", "firefox", "chromium"]; + let commands = ["xdg-open", "open", "firefox", "chromium", "sensible-browser"]; if let Some(cmd) = find_cmd(&commands) { Command::new(cmd) .arg(path)