I installed the latest RVM - Ruby Version Manager - and installed Ruby 1.8.7 and 1.9.3 on OSX Lion with XCode 4.3.3 using clang rvm install 1.9.3 --reconfigure --debug -C --enable-pthread --with-gcc=clang as the regular way did not work due to a GCC error. I did get one error clang: error: unsupported option '--with-libyaml, but Ruby 1.9.3 worked and I could run WPScan that needs at least 1.9.2 .
But now every time I run a command to change folder such as cd I get a long Bash script printed related to RVM - see http://pastebin.com/UAm38Vcm and:
.
How can I stop it from doing that?
Update I
Added a comment at RVM at Github as well https://github.com/wayneeseguin/rvm/issues/1039 , but as that issue is not 100% related and as I need this solved as soon as possible I opened a thread here with more data.
Update II
I realized the RVM Initialization script is the one that is being printed: https://github.com/wayneeseguin/rvm/blob/master/scripts/initialize . No idea why though..
Update IV
My .bashrc
# define aliases
alias sudo='sudo '
#alias ruby='ruby1.9'
alias apacherestart='sudo apachectl -k restart'
# define hist properties
HISTFILESIZE=1000000000
HISTSIZE=1000000
# define path to programs
PATH=/opt/local/bin:opt/local/sbin:/opt/subversion/bin:/opt/local/apache2/bin/:/opt/local/lib/python2.4/site-packages/django/bin:$PATH
# define manpath
MANPATH=/opt/local/share/man:$MANPATH
# export env vars
export HISTFILESIZE HISTSIZE PATH MANPATH
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
My .bash_profile
source ~/.bashrc
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
cdand not other commands? If you open a new terminal, does it do it, too? What doecho "$PS1"andecho "$PROMPT_COMMAND"output? What doestype -a cdsay? – Dennis Williamson Jul 14 '12 at 6:10echo "$PS1" echo "$PS1" \h:\W \u\$ update_terminal_cwd;andecho "$PROMPT_COMMAND" echo "$PROMPT_COMMAND" update_terminal_cwd; update_terminal_cwd;Typingtype -a cdprints the whole RVM script. – rhand Jul 14 '12 at 6:14Last login: Sat Jul 14 12:13:00 on ttys001 You have new mail. jaspersmbp:~ jasper$– rhand Jul 14 '12 at 6:20unset -f cdorunalias cd. – Dennis Williamson Jul 14 '12 at 6:20.bashrcand thus the question is essentially moot. Close the terminal and open a new one. Done. – Dennis Williamson Jul 14 '12 at 6:31