One thing to make sure is that you are ONLY adding directories to your PATH
that actually exist, or you will get errors (the one you are having might be
it, I can't remember). I solve this by doing the following in my fish
config:
set path_list /usr/local/git/bin /usr/local/mysql/bin
/usr/local/jruby/bin /usr/local/nginx/sbin /Library/PostgreSQL8/bin
for i in $path_list
if not contains $i $PATH
if test -d $i
set PATH $PATH $i
end
end
end
- Bo
On Fri, Aug 28, 2009 at 9:21 AM, Mark Ryall <[email protected]> wrote:
> I've noticed lots of people using fishshell.org lately and am really
> getting into it myself.
> I get this problem though sometimes where any attempt to append to PATH
> results in an error - a 'something or other too long' error (it isn't
> happening right now and i can't recall the exact message).
>
> If it wasn't for this error I'd make it my default shell and googling
> hasn't yielded any answers.
>
> I'm using the macports build of fish on mac os x leopard.
>
> Anyone encountered this issue?
>
> Mark.
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
or Rails Oceania" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rails-oceania?hl=en
-~----------~----~----~----~------~----~------~--~---