#!/bin/bash

OLD="https://s3.ca-central-1.amazonaws.com/canimmunize.cdn.dev/cvc/explorer/index_bundle.js"
NEW="../../index_bundle.js"

#find ./cvc-canimmunize.webflow -type f -exec sed -i '' -e 's:$OLD:$NEW:g' {} \;
#find ./cvc-canimmunize.webflow -type f  -exec sed -i '' 's:$OLD:$NEW:' {} +
#find ./cvc-canimmunize.webflow -type f -print0 | xargs -0 perl -pi -e 's/$OLD/$NEW/g'
find ./cvc-canimmunize.webflow -type f -print0 | xargs -0 sed -i "" "s:$OLD:$NEW:g"
