diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-09-21 19:42:43 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-09-21 19:42:43 +0300 |
commit | f2582cacf7746f42736d683eed8cad69f4cff6d7 (patch) | |
tree | a87eebe755d92c903e96ca698e066d2dd759fbb9 /indra | |
parent | 30c0043ba3171726d008f2f573fc90107e612c73 (diff) |
SL-15612 Value fix
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/installers/darwin/apple-notarize.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/installers/darwin/apple-notarize.sh b/indra/newview/installers/darwin/apple-notarize.sh index 2213914e6d..466898ecda 100755 --- a/indra/newview/installers/darwin/apple-notarize.sh +++ b/indra/newview/installers/darwin/apple-notarize.sh @@ -1,5 +1,5 @@ #!/bin/sh -if [ -n $SKIP_NOTARIZATION ]; then +if [[ $SKIP_NOTARIZATION == "true" ]]; then echo "Skipping notarization" exit 0 fi |