mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Improve error handling for which::which
failures
Co-authored-by: Pascal Kuthe <pascalkuthe@pm.me>
This commit is contained in:
parent
6d724a8f33
commit
cb25d13028
6 changed files with 33 additions and 9 deletions
|
@ -86,10 +86,8 @@ pub fn get_language(name: &str) -> Result<Language> {
|
|||
}
|
||||
|
||||
fn ensure_git_is_available() -> Result<()> {
|
||||
match helix_stdx::env::which("git") {
|
||||
Ok(_cmd) => Ok(()),
|
||||
Err(err) => Err(anyhow::anyhow!("'git' could not be found ({err})")),
|
||||
}
|
||||
helix_stdx::env::which("git")?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn fetch_grammars() -> Result<()> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue