On 9/6/07, Simon Ruderich simon@ruderich.com wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512
Mike Mellor wrote:
Well, I got things working again, but I'm a little confused as to how to really fix the problem. What I found was that my commands the began #!/usr/bin env ruby were failing to execute. Changing the first line to #!/usr/local/bin/ruby works. It's not a TextMate issue, but a problem with my system (that I need to figure out). Thanks for the help.
Mike
Are you sure it was #!/usr/bin env ruby? Because it should be #!/usr/bin/env ruby (note the slash).
Does "/usr/bin/env ruby" work in the Terminal? What does "echo $PATH" print?
Yeah, it was /usr/bin/env (fat fingers and early mornings don't mix)! echo $PATH looks ok (/usr/local/bin is before /usr/bin) I'll try it /usr/bin/env ruby tonight. Thanks.
Mike