What's wrong with this entry?
On macOS, the bash shell profile path is now determined using the standard precedence: .bash_profile → .bash_login → .profile, matching what macOS bash itself does.
- Previously Claude Code always used
.bashrcon all platforms. - On macOS (darwin), it now checks for each file in order and uses the first one found, falling back to
.bash_profileif none exist. - On Linux,
.bashrcis still used. .bashrcis still returned separately (asbashrc:) on macOS for reference.
New platform-aware profile resolution in z0e function (search for ".bash_profile" in the added functions)
Strings lifted out of the shipped bundle, so the claim above can be checked against them.