zeplin / fastlane-plugin-notarize

fastlane plugin to notarize a macOS app 🛂
MIT License
68 stars 8 forks source link

suggestion - turn on the log for notarisation file upload #9

Closed ConfusedVorlon closed 4 years ago

ConfusedVorlon commented 5 years ago

I hit a bunch of issues related to my account password and multiple teams

they were pretty easy to identify once I went into the source and manually recreated the notarization_upload_command (apple error messages were for unusually helpful)

at the moment, the plugin just gives unhelpful errors like 'script exited with code 160'

how about just turning on the log

        notarization_upload_response = Actions.sh(
          notarization_upload_command,
          log: true
        )

or alternatively allowing that with an optional 'verbose' param

berkcebi commented 5 years ago

Adding a verbose option makes a lot of sense! Happy to help if anyone wants to tackle this.