diff --git a/replace-env-vars.sh b/replace-env-vars.sh index 6518fcc9e..56c6d2025 100644 --- a/replace-env-vars.sh +++ b/replace-env-vars.sh @@ -8,7 +8,7 @@ if [ "${FROM}" = "${TO}" ]; then exit 0 fi -# Only peform action if $FROM and $TO are different. +# Only perform action if $FROM and $TO are different. echo "Replacing all statically built instances of $FROM with this string $TO ." grep -R -la "${FROM}" apps/app/.next | xargs -I{} sed -i "s|$FROM|$TO|g" "{}"