mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-26 03:59:55 +00:00
Remove stray dbg
This commit is contained in:
parent
f7055c2acc
commit
5ab35bd6fd
1 changed files with 2 additions and 2 deletions
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue