mirror of https://github.com/lapce/lapce.git
return stdout stderr
This commit is contained in:
parent
ca80cec008
commit
5ee7ede0bb
|
@ -832,6 +832,8 @@ pub fn process_request(
|
|||
.output()?;
|
||||
Ok(serde_json::to_value(ExecuteProcessResult {
|
||||
success: output.status.success(),
|
||||
stdout: Some(output.stdout),
|
||||
stderr: Some(output.stderr),
|
||||
})?)
|
||||
}
|
||||
_ => Err(anyhow!("request not supported")),
|
||||
|
|
Loading…
Reference in New Issue