You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The sed command escapes ampersands so that they don't do the grouping
# replacement in the subsequent sed command.
MINIFIED_EMBED_CODE=$(cat ${PROJECT_DIR}/dist/tout-js-sdk-embed-code.min.js | sed 's/&/\\&/g')
# The sed delimiters for the embed code are CTRL-A to avoid conflict with characters in the replacement code itself. You can use a CTRL-A in the code by typing CTRL + V + A
sed -e"s##MINIFIED_JS_SDK_EMBED_CODE##$MINIFIED_EMBED_CODE" -e"s/##JS_SDK_EMBED_CODE_VERSION##/$VERSION/" <docs/README.md.template > README.md