diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-07-19 18:58:04 +0300 | 
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-07-19 18:58:04 +0300 | 
| commit | 54171dbc9fe3fa42ebbf59a243b7381fdb3aa662 (patch) | |
| tree | 68e8456436a8f53671fc4a522dbd23e87c8059e4 /indra | |
| parent | 11635dc5b80b9e65dd53cf9a66f3861c90818d0a (diff) | |
SL-15585 more logging for altool
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/installers/darwin/apple-notarize.sh | 13 | 
1 files changed, 7 insertions, 6 deletions
| diff --git a/indra/newview/installers/darwin/apple-notarize.sh b/indra/newview/installers/darwin/apple-notarize.sh index 2b3cce6078..ecf5bd158a 100755 --- a/indra/newview/installers/darwin/apple-notarize.sh +++ b/indra/newview/installers/darwin/apple-notarize.sh @@ -6,12 +6,12 @@ if [ -f "$CONFIG_FILE" ]; then      zip_file=${app_file/app/zip}      ditto -c -k --keepParent "$app_file" "$zip_file"      if [ -f "$zip_file" ]; then -        requestUUID=$(xcrun altool --notarize-app --primary-bundle-id "com.secondlife.viewer" \ -                                --username $USERNAME \ -                                --password $PASSWORD \ -                                --asc-provider $ASC_PROVIDER \ -                                --file "$zip_file" 2>&1 \ -                    | awk '/RequestUUID/ { print $NF; }') +        res=$(xcrun altool --notarize-app --primary-bundle-id "com.secondlife.viewer" \ +                                   --username $USERNAME \ +                                   --password $PASSWORD \ +                                   --asc-provider $ASC_PROVIDER \ +                                   --file "$zip_file" 2>&1) +        requestUUID=$(echo $res | awk '/RequestUUID/ { print $NF; }')          echo "Apple Notarization RequestUUID: $requestUUID" @@ -41,6 +41,7 @@ if [ -f "$CONFIG_FILE" ]; then              fi          else              echo "Notarization error: couldn't get request UUID" +            echo $res              exit 1          fi      fi | 
