diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-09-21 19:37:15 +0300 | 
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-09-21 19:37:15 +0300 | 
| commit | 30c0043ba3171726d008f2f573fc90107e612c73 (patch) | |
| tree | b5849796422815b175b08ea0e3ec6efe001be8bf | |
| parent | 4a411d98960c29925c8979e656d940b1af666db9 (diff) | |
SL-15612 Check for SKIP_NOTARIZATION evn. variable
| -rwxr-xr-x | indra/newview/installers/darwin/apple-notarize.sh | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/indra/newview/installers/darwin/apple-notarize.sh b/indra/newview/installers/darwin/apple-notarize.sh index ecf5bd158a..2213914e6d 100755 --- a/indra/newview/installers/darwin/apple-notarize.sh +++ b/indra/newview/installers/darwin/apple-notarize.sh @@ -1,4 +1,9 @@  #!/bin/sh +if [ -n $SKIP_NOTARIZATION ]; then +    echo "Skipping notarization" +    exit 0 +fi +  CONFIG_FILE="$build_secrets_checkout/code-signing-osx/notarize_creds.sh"  if [ -f "$CONFIG_FILE" ]; then      source $CONFIG_FILE | 
