chore: fix typo in replace-env-vars.sh (#1632)

peform -> perform
This commit is contained in:
Ikko Eltociear Ashimine 2023-07-24 15:38:29 +09:00 committed by GitHub
parent 2ce7914b7a
commit e357283789
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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" "{}"