From 5ab35bd6fdb63acbd840ba443968852cc8d47712 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 20 Apr 2022 14:34:38 +0200 Subject: [PATCH] Remove stray dbg --- crates/zed/src/zed.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index 53a0875248..379b6172ab 100644 --- a/crates/zed/src/zed.rs +++ b/crates/zed/src/zed.rs @@ -265,7 +265,7 @@ async fn install_cli(cx: &AsyncAppContext) -> Result<()> { let status = smol::process::Command::new("osascript") .args([ "-e", - &dbg!(format!( + &format!( "do shell script \" \ mkdir -p \'{}\' && \ ln -sf \'{}\' \'{}\' \ @@ -273,7 +273,7 @@ async fn install_cli(cx: &AsyncAppContext) -> Result<()> { bin_dir_path.to_string_lossy(), cli_path.to_string_lossy(), link_path.to_string_lossy(), - )), + ), ]) .stdout(smol::process::Stdio::inherit()) .stderr(smol::process::Stdio::inherit())