From 4999837d74f5f654bacf5eb854c939d34a8ac5f5 Mon Sep 17 00:00:00 2001 From: Burak Topal <101973888+buraktopalyn@users.noreply.github.com> Date: Fri, 18 Jul 2025 19:01:51 +0300 Subject: [PATCH] Update BARE_METAL.md (#4175) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pull Request Type [ ] ✨ feat [x] 🐛 fix [ ] ♻️ refactor [ ] 💄 style [ ] 🔨 chore [ ] 📝 docs Relevant Issues N/A (No issue exists for this typo fix) What is in this change? This PR corrects a minor typo in an output message within a script. Before: echo "Copying to Sever Public" After: echo "Copying to Server Public" Additional Information This is a minor correction to improve the clarity and professionalism of the script's output. No functional changes are introduced. Developer Validations [ ] I ran yarn lint from the root of the repo & committed changes [ ] Relevant documentation has been updated [ ] I have tested my code functionality [ ] Docker build succeeds locally --- BARE_METAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BARE_METAL.md b/BARE_METAL.md index 205cebb5..a0577c77 100644 --- a/BARE_METAL.md +++ b/BARE_METAL.md @@ -86,7 +86,7 @@ curl -I "http://localhost:3001/api/env-dump" | head -n 1|cut -d$' ' -f2 echo "Rebuilding Frontend" cd $HOME/anything-llm/frontend && yarn && yarn build && cd $HOME/anything-llm -echo "Copying to Sever Public" +echo "Copying to Server Public" rm -rf server/public cp -r frontend/dist server/public