Update BARE_METAL.md (#4175)

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
This commit is contained in:
Burak Topal
2025-07-18 19:01:51 +03:00
committed by GitHub
parent ea8ba2f7f2
commit 4999837d74

View File

@@ -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