Skip to content

Commit

Permalink
Preserve the Entitlements directory in podspec (#2062)
Browse files Browse the repository at this point in the history
In order to code sign Sparkle when installing via a Pod, the `Entitlements` directory needs to be available.
  • Loading branch information
digitalmoksha committed Jan 16, 2022
1 parent 1641371 commit 403209b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sparkle.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Pod::Spec.new do |s|
s.source = { :http => "https://github.com/sparkle-project/Sparkle/releases/download/#{s.version}/Sparkle-#{s.version}.tar.xz" }
s.source_files = 'Sparkle.framework/Versions/B/Headers/*.h'

s.preserve_paths = ['bin/*', 'Symbols']
s.preserve_paths = ['bin/*', 'Entitlements', 'Symbols']
s.public_header_files = 'Sparkle.framework/Versions/B/Headers/*.h'
s.vendored_frameworks = 'Sparkle.framework'
s.xcconfig = {
Expand Down

0 comments on commit 403209b

Please sign in to comment.