On 04/16/2012 10:48 AM, Tim Mooney wrote: > I build my PATH from scratch in my .bashrc, rather than inheriting it from > the system defaults. I'm guessing this is what's causing the test > failures.
Yes, that sounds like that's the problem. In general, one cannot put arbitrary computation into .bashrc, as that messes things up. For example, it's a bad idea to put 'echo xxx' into .bashrc. Shouldn't PATH-building be in .profile, not in .bashrc?
