From f1b303070b09694d81e43c0f57a9eef9a02c029c Mon Sep 17 00:00:00 2001 From: Jestin Palamuttam Date: Tue, 23 Jun 2026 19:54:41 -0400 Subject: [PATCH] Enforce LF line endings for .devcontainer/.bashrc On Windows, .devcontainer/.bashrc was checked out with CRLF line endings (no .gitattributes rule covered it), causing the dev container's bash to fail loading it with `$'\r': command not found` errors and breaking the prompt's git-branch helper. Add a `.devcontainer/.bashrc text eol=lf` rule so the file stays LF on all platforms, following the existing convention for bin/*, *.sh and *.rb. Co-Authored-By: Claude Opus 4.8 --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index b387bb10ad..36ff81d2b4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -15,3 +15,4 @@ config/credentials.yml.enc diff=rails_credentials bin/* text eol=lf *.sh text eol=lf *.rb text eol=lf +.devcontainer/.bashrc text eol=lf