Now that we’ve narrowed down the problem:
- Run
ps -p $$at the command line to check if you are, in fact, using a bash shell. - Realize that you are in zsh, which means you should be editing your profile in
.zshrc. - Copy the offending lines from
.bash_profileto.zshrc, OR Modify your.zshrcto directly source your.bash_profile.
UPDATE: Do what @TC1 mentions in the comments and keep the shell-specific code in each shell’s own profile, and from those profiles, only source shell-agnostic code.