Replace lowercase webapp URL placeholder
Create PR containing updated CHANGELOG.md and release packages to NPM once PR is merged / Release (push) Has been cancelled
Run i18n AI automation / Run i18n (push) Has been cancelled
Next.js Bundle Analysis / analyze (push) Has been cancelled

This commit is contained in:
Zachariah K. Sharma
2026-06-08 08:47:02 -06:00
parent 5ee6d77896
commit 29b14a90c8
+7
View File
@@ -11,3 +11,10 @@ echo "Replacing all statically built instances of $FROM with $TO."
for file in $(egrep -r -l "${FROM}" apps/web/.next/ apps/web/public/); do
sed -i -e "s|$FROM|$TO|g" "$file"
done
LOWER_FROM=$(printf "%s" "$FROM" | tr "[:upper:]" "[:lower:]")
if [ "${LOWER_FROM}" != "${FROM}" ]; then
for file in $(egrep -r -l "${LOWER_FROM}" apps/web/.next/ apps/web/public/); do
sed -i -e "s|$LOWER_FROM|$TO|g" "$file"
done
fi