mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
chore: speedup replace-env-vars.sh (#1146)
This commit is contained in:
parent
8252b1ccde
commit
1afb3ba4d2
@ -11,7 +11,4 @@ fi
|
||||
# Only peform action if $FROM and $TO are different.
|
||||
echo "Replacing all statically built instances of $FROM with this string $TO ."
|
||||
|
||||
find apps/app/.next -type f |
|
||||
while read file; do
|
||||
sed -i "s|$FROM|$TO|g" "$file"
|
||||
done
|
||||
grep -R -la "${FROM}" apps/app/.next | xargs -I{} sed -i "s|$FROM|$TO|g" "{}"
|
||||
|
Loading…
Reference in New Issue
Block a user