Skip to content

Commit 6b530bc

Browse files
authored
[installation]
1 parent ffc3585 commit 6b530bc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

install.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ make composer-install
4242
echo "🚀 Starting the bot..."
4343
make up
4444

45+
# 7. Gitattributes normalization (optional)
46+
echo "📐 Normalizing line endings with .gitattributes..."
47+
git add . && git commit -m "chore: normalize line endings" || true
48+
49+
# 8. Add to .gitattributes if not present
50+
grep -qxF 'install.sh text eol=lf' .gitattributes || echo 'install.sh text eol=lf' >> .gitattributes
51+
4552
echo "\n✅ Installation complete!"
4653
echo ""
4754
echo "To check logs: ${bold}make logs${normal}"

0 commit comments

Comments
 (0)