mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
fix rust_analyzer choking on local use
This commit is contained in:
parent
6fcbb99faf
commit
c19567e59b
1 changed files with 1 additions and 3 deletions
|
|
@ -1,12 +1,10 @@
|
|||
use anyhow::Result;
|
||||
use anyhow::{anyhow, Result};
|
||||
#[cfg(target_os = "linux")]
|
||||
use std::ffi::OsStr;
|
||||
use std::io::Write;
|
||||
use std::process::{Command, Stdio};
|
||||
|
||||
fn execute_copy_command(command: Command, text: &str) -> Result<()> {
|
||||
use anyhow::anyhow;
|
||||
|
||||
let mut command = command;
|
||||
|
||||
let mut process = command
|
||||
|
|
|
|||
Loading…
Reference in a new issue