summaryrefslogtreecommitdiff
path: root/indra/newview/installers/darwin
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2021-09-21 19:37:15 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2021-09-21 19:37:15 +0300
commit30c0043ba3171726d008f2f573fc90107e612c73 (patch)
treeb5849796422815b175b08ea0e3ec6efe001be8bf /indra/newview/installers/darwin
parent4a411d98960c29925c8979e656d940b1af666db9 (diff)
SL-15612 Check for SKIP_NOTARIZATION evn. variable
Diffstat (limited to 'indra/newview/installers/darwin')
-rwxr-xr-xindra/newview/installers/darwin/apple-notarize.sh5
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