diff --git a/.prettierignore b/.prettierignore index c6234097..b690894b 100644 --- a/.prettierignore +++ b/.prettierignore @@ -7,6 +7,7 @@ build *.sh *.desktop *.xml +*.md pnpm-lock.yaml diff --git a/crates/packager/src/package/app/mod.rs b/crates/packager/src/package/app/mod.rs index 4e4bf7b7..7102d522 100644 --- a/crates/packager/src/package/app/mod.rs +++ b/crates/packager/src/package/app/mod.rs @@ -49,11 +49,11 @@ pub(crate) fn package(ctx: &Context) -> crate::Result> { create_info_plist(&contents_directory, bundle_icon_file, config)?; tracing::debug!("Copying frameworks"); - let framework_paths = copy_frameworks_to_bundle(&contents_directory, config)?; + let _framework_paths = copy_frameworks_to_bundle(&contents_directory, config)?; #[cfg(target_os = "macos")] sign_paths.extend( - framework_paths + _framework_paths .into_iter() .filter(|p| { let ext = p.extension();