Reputation: 3563
I have installed RVM on my machine running Mac OS X 10.8.3 from the tcsh shell. I am trying to run: source ~/.rvm/scripts/rvm
in the terminal and I get a Badly placed ()'s
error.
Any advice? I looked and this rvm script does exist in the .rvm/scripts subfolder....
Upvotes: 0
Views: 1841
Reputation: 1523
This happens when rvm
defines a function with a name which you have defined as an alias
. Can you check your aliases which can possibly be a function name that rvm has defined.
The error is not from rvm but from the shell.
As you are using tcsh, there might be some conflict with the function name. Try switching to bash
and then executing the same.
Upvotes: 1