Skip to content

Commit

Permalink
skip signing .app
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog-crabnebula committed Sep 21, 2023
1 parent 2994d1e commit e872863
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/packager/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ pub fn sign_outputs(
) -> crate::Result<Vec<PathBuf>> {
let mut signatures = Vec::new();
for package in packages {
for path in &package.paths {
signatures.push(sign::sign_file(config, path)?);
if !matches!(package.format, PackageFormat::App) {
for path in &package.paths {
signatures.push(sign::sign_file(config, path)?);
}
}
}

Expand Down

0 comments on commit e872863

Please sign in to comment.