aboutsummaryrefslogtreecommitdiff
path: root/helix-dap/src/client.rs
diff options
context:
space:
mode:
authorMichael Davis2024-01-23 18:36:53 +0000
committerBlaž Hrastnik2024-01-24 06:47:49 +0000
commitcb25d13028ec1cdf986a3567ea52562ea654a7b8 (patch)
treea820e7dbceebe37fbfb3897429747ba8bfeb524b /helix-dap/src/client.rs
parent6d724a8f331f4b2a8f1a001e990cf6129dc50b00 (diff)
Improve error handling for `which::which` failures
Co-authored-by: Pascal Kuthe <pascalkuthe@pm.me>
Diffstat (limited to 'helix-dap/src/client.rs')
-rw-r--r--helix-dap/src/client.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs
index 579811df..18af13ae 100644
--- a/helix-dap/src/client.rs
+++ b/helix-dap/src/client.rs
@@ -113,7 +113,7 @@ impl Client {
id: usize,
) -> Result<(Self, UnboundedReceiver<Payload>)> {
// Resolve path to the binary
- let cmd = helix_stdx::env::which(cmd).map_err(|err| anyhow::anyhow!(err))?;
+ let cmd = helix_stdx::env::which(cmd)?;
let process = Command::new(cmd)
.args(args)