nowsecure / node-applesign

NodeJS module and commandline utility for re-signing iOS applications (IPA files).
https://www.nowsecure.com
MIT License
420 stars 77 forks source link

fix: ensure apexInfo.CFBundleExecutable is truthy before use #144

Closed amgoodfellow closed 1 year ago

amgoodfellow commented 1 year ago

If there is no executable for applesign to sign, a type error is thrown because undefined is passed to path.join.

Checking to make sure apexInfo.CFBundleExecutable is not undefined before continuing appears to fix this

trufae commented 1 year ago

Looks good! Thank you