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
I use bash_completion for my terminal, and I may have to dive deeper into the code implementation to be sure, but this might be related to the known issue about rvm
I load my profile files by the following script on top of my .bash_profile
# Load files
for file in ~/.{bash_prompt,exports,aliases,functions}; do
[ -r "$file" ] && source "$file"
done
unset file
And .bash_prompt is one of them that seems to raise the error
It's because if you don't specify a program to start, it uses your shell, but doesn't start it up as a login shell, so .bash_profile and the files necessary for bash completion (where the function __git_ps1 is declared) don't get loaded.
It's because if you don't specify a program to start, it uses your shell,
but doesn't start it up as a login shell, so .bash_profile and the files
necessary for bash completion (where the function __git_ps1 is declared)
don't get loaded.
As a workaround you can run showterm $SHELL -l
—
Reply to this email directly or view it on GitHubhttps://github.com//issues/21#issuecomment-28005129
.
I use bash_completion for my terminal, and I may have to dive deeper into the code implementation to be sure, but this might be related to the known issue about rvm
I load my profile files by the following script on top of my
.bash_profile
And
.bash_prompt
is one of them that seems to raise the errorand the buggy showterm.io as an example: http://showterm.io/6ef68371dc1176074c302
Mac OS 10.8.4
iTerm 1.0.0.20130622
bash-completion 1.3
The text was updated successfully, but these errors were encountered: