Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MordechaiHadad committed Sep 12, 2024
1 parent d75a09e commit 9c2521a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/handlers/use_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ async fn copy_nvim_proxy(config: &Config) -> Result<()> {
}

if fs::metadata(&installation_dir).await.is_ok() {
let output = Command::new(&installation_dir).arg("--&bob").output()?.stdout;
let output = Command::new(&installation_dir)
.arg("--&bob")
.output()?
.stdout;
let version = String::from_utf8(output)?.trim().to_string();

if version == env!("CARGO_PKG_VERSION") {
Expand Down

0 comments on commit 9c2521a

Please sign in to comment.