Skip to content

Instantly share code, notes, and snippets.

@uxp
Created April 4, 2010 23:25
Show Gist options
  • Save uxp/355805 to your computer and use it in GitHub Desktop.
Save uxp/355805 to your computer and use it in GitHub Desktop.
Typo in the $HOME/examples/rvmrc file results in this output:
gilgamesh:stderr-glow uxp$ gem env gemdir
/Users/uxp/.rvm/gems/ruby-1.8.7-p249@rails2
gilgamesh:stderr-glow uxp$ rvm system
-bash: ${$rvm_path}/bin: bad substitution
mv: rename /Users/uxp/.rvm/gems/ruby-1.8.7-p249@rails2/cache/bundler to /Users/uxp/.gem/cache/bundler: Directory not empty
rmdir: /Users/uxp/.rvm/gems/ruby-1.8.7-p249@rails2/cache: Directory not empty
gilgamesh:stderr-glow uxp$ gem env gemdir
/Library/Ruby/Gems/1.8
On line 30:
28 # Bin Path
29 # This is where rvm places all of it's executable/wrapper scripts.
30 #export rvm_bin_path="${$rvm_path}/bin"
31
32 # Gem Path
Should be:
30 #export rvm_bin_path="${rvm_path}/bin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment