Last active
September 25, 2021 19:08
-
-
Save palmerc/d422ad7ed670b080a604bbc1a3dd7643 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def find_codesign_elements(path): | |
elements = find(path, '*.appex') | |
elements.extend(find(path, '*.framework')) | |
elements.extend(find(path, '*.dylib')) | |
return elements | |
def find_codesign_artifacts(path): | |
artifacts = find(path, '_CodeSignature') | |
artifacts.extend(find(path, 'CodeResources')) | |
artifacts.extend(find(path, '*.mobileprovision')) | |
return artifacts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment