Capistrano does use the path. It just does not load your .bashrc (or whatever) on each command, and so if you are setting a path in there, it won't be seen by Capistrano. If you have non-standard paths that you want Capistrano to use, you need to set them via something like the default_environment hash:
default_environment["PATH"] = "/path/one:/path/two:/path/three" - Jamis On 8/2/07, redbaritone <[EMAIL PROTECTED]> wrote: > > On Aug 2, 5:03 pm, "Jamis Buck" <[EMAIL PROTECTED]> wrote: > > set :rake, "/path/to/rake" > > > > Specify where on your production server rake is, and see what happens. > > YES. Thanks. > > How come Capistrano says it will use the PATH, but it can't find them > using it? I had to specify exactly where svn was with scm_command, > too. :-( > > You're the MAN, Jamis! > > Doug Hall > > > > > --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
