Skip to content
Snippets Groups Projects
Commit 30c0043b authored by Andrey Lihatskiy's avatar Andrey Lihatskiy
Browse files

SL-15612 Check for SKIP_NOTARIZATION evn. variable

parent 4a411d98
No related branches found
No related tags found
No related merge requests found
#!/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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment