Limit replacement to JS files only

This commit is contained in:
Reginald Bondoc
2022-12-06 22:45:26 +01:00
parent 209673d744
commit 93703475fe
2 changed files with 3 additions and 3 deletions

View File

@@ -4,13 +4,13 @@ ORIGINAL=$1
REPLACEMENT=$2
if [ "${ORIGINAL}" = "${REPLACEMENT}" ]; then
echo "Replacement is the same, skipping.."
echo "Environment variable replacement is the same, skipping.."
exit 0
fi
echo "Replacing pre-baked value.."
find /app/public /app/.next -type f ! -name "*.png" ! -name "*.svg" ! -name "*.gif" ! -name "*.jpg" ! -name "*.jpeg" ! -name "*.ico" |
find /app/public /app/.next -type f -name "*.js" |
while read file; do
sed -i "s|$ORIGINAL|$REPLACEMENT|g" "$file"
done