From 3aa608fbfc0cd04fd232172f8de369182c8ad20c Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Wed, 10 Dec 2025 08:42:47 -0800 Subject: [PATCH] Update symlink path for Spacedrive.framework on macOS - Adjusted the symlink creation for Spacedrive.framework to include the "Frameworks" directory, aligning with the expected structure for native dependencies. --- xtask/src/native_deps.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtask/src/native_deps.rs b/xtask/src/native_deps.rs index 8cf30fee5..e75fa7a52 100644 --- a/xtask/src/native_deps.rs +++ b/xtask/src/native_deps.rs @@ -120,7 +120,7 @@ pub fn symlink_libs_macos(root: &Path, native_deps: &Path) -> Result<()> { use std::os::unix::fs as unix_fs; // Create Spacedrive.framework symlink for dylibs (matches v1 behavior) - let framework = native_deps.join("Spacedrive.framework"); + let framework = native_deps.join("Frameworks").join("Spacedrive.framework"); if framework.exists() { // Sign all dylibs in the framework (required for macOS 13+) let libs_dir = framework.join("Libraries");