Skip to content

Commit

Permalink
fmt and clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
amr-crabnebula committed Apr 15, 2024
1 parent d0f4df0 commit e3e2792
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ build
*.sh
*.desktop
*.xml
*.md

pnpm-lock.yaml

Expand Down
4 changes: 2 additions & 2 deletions crates/packager/src/package/app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ pub(crate) fn package(ctx: &Context) -> crate::Result<Vec<PathBuf>> {
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();
Expand Down

0 comments on commit e3e2792

Please sign in to comment.