fix(macOS): normalize Finder alias target path

This commit is contained in:
DrewSkelton 2026-07-12 13:47:31 -04:00
parent 2a32b42b36
commit aba0054589
1 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,10 @@
use std::path::{Path, PathBuf};
#[cfg(target_os = "macos")]
use std::process::Command;
use anyhow::{Context, Result};
#[cfg(target_os = "macos")]
use anyhow::Context;
use anyhow::Result;
use crate::util;
@ -62,4 +65,4 @@ end run
}
Ok(Some(util::resolve_path(resolved)?))
}
}