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

Fix typo and improve keyring error message #293

Merged
merged 2 commits into from
May 17, 2024
Merged
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
12 changes: 6 additions & 6 deletions crates/client/src/keyring/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,12 @@ impl std::fmt::Display for KeyringError {
{
write!(
f,
concat!(" Since you are using the 'secret-service' backend, ",
"the likely cause of this error is that no secret service ",
"implementation, such as GNOME Keyring or KWallet, is installed, ",
"or one is installed but not correctly configured. Consult your OS ",
"distribution's documentation for instructions on setting it up, or run ",
"`warg config --keyring_backend <backend>` to use a different backend.")
"\nThe 'secret-service' keyring backend failed.
You may not have a secret service, such as GNOME Keyring or KWallet, installed or configured.
Consult your OS distribution's documentation for installation instructions.

Alternatively, use `warg config --keyring-backend <backend>` to set a different keyring backend.
See `warg config --help` for the options."
)?;
}

Expand Down
Loading