You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
When I first set up Terminitor for my project, most commands didn't work because /usr/local/bin wasn't in the PATH. I found out that this was because Terminitor starts $SHELL in new tabs, and $SHELL points to /bin/bash, but calling /bin/bash starts Bash in non-login mode which doesn't read the contents of /etc/profile, only /bin/bash --login causes this file to load. I've fixed it by setting SHELL="/bin/bash --login" in .bash_profile, but I'm wondering if there isn't a better way to do this from inside Terminitor... If not, then maybe it's worth adding that to the docs? I suppose there must be more people than just me that have this problem.
The text was updated successfully, but these errors were encountered:
When I first set up Terminitor for my project, most commands didn't work because /usr/local/bin wasn't in the PATH. I found out that this was because Terminitor starts $SHELL in new tabs, and $SHELL points to /bin/bash, but calling /bin/bash starts Bash in non-login mode which doesn't read the contents of /etc/profile, only /bin/bash --login causes this file to load. I've fixed it by setting SHELL="/bin/bash --login" in .bash_profile, but I'm wondering if there isn't a better way to do this from inside Terminitor... If not, then maybe it's worth adding that to the docs? I suppose there must be more people than just me that have this problem.
The text was updated successfully, but these errors were encountered: