#!/usr/bin/env sh DEFAULT_APP_LINK_URL="your.deep.link.host.tld" APP_LINK_URL="${APP_LINK_URL:-$DEFAULT_APP_LINK_URL}" ENTITLEMENTS_FILE="app/ios/App/App/App.entitlements" /usr/libexec/PlistBuddy -c "Delete :com.apple.developer.associated-domains string $APP_LINK_URL" $ENTITLEMENTS_FILE /usr/libexec/PlistBuddy -c "Add :com.apple.developer.associated-domains array" $ENTITLEMENTS_FILE /usr/libexec/PlistBuddy -c "Add :com.apple.developer.associated-domains:0 string $APP_LINK_URL" $ENTITLEMENTS_FILE