I am currently having the following problem:
Some of my ruby/rbenv commands commands (e.g.: bundle exec irb, rbenv rehash) fail when executing.
However I don't get any error output:
[~]$ bundle exec irb
[~]$ echo $?
1
I use zsh (via oh-my-zsh) but switching to bash didn't solve the problem.
Is there a way to see the error output from the last command?
STDERRredirected somewhere other than the terminal. – vgoff Nov 20 '12 at 1:02$stderrto a file or a log. Open up IRB and check the value of$stderrto get a hint of where it may be redirected to. – vgoff Nov 20 '12 at 20:03