Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include url in all Browse error conditions #5

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/browse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use browse_unix::{browse_url_impl, handle_browser_open_impl};
#[inline]
pub async fn browse_url(url: &String) {
if let Err(e) = browse_url_impl(url).await {
eprintln!("{}", e);
eprintln!("{e}\nStart a fwd session to open: {url}");
std::process::exit(1);
}
}
Expand All @@ -20,7 +20,8 @@ pub async fn browse_url(url: &String) {
pub async fn browse_url_impl(_url: &String) -> Result<()> {
use anyhow::anyhow;
Err(anyhow!(
"Opening a browser is not supported on this platform"
"Opening a browser is not supported on this platform.\n\
Unable to open: {url}"
))
}

Expand Down