We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc3585 commit 6b530bcCopy full SHA for 6b530bc
install.sh
@@ -42,6 +42,13 @@ make composer-install
42
echo "🚀 Starting the bot..."
43
make up
44
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
52
echo "\n✅ Installation complete!"
53
echo ""
54
echo "To check logs: ${bold}make logs${normal}"
0 commit comments