From e357283789379df4b85f7d89198fab0a5281fd38 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 24 Jul 2023 15:38:29 +0900 Subject: [PATCH] chore: fix typo in replace-env-vars.sh (#1632) peform -> perform --- replace-env-vars.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" "{}"