Scott Johnson a écrit : > I changed the 12 failing tests to expect single quotes and everything > seems to be working now. I tried both 'deploy' and 'deploy:rollback' > in my Rails app, with both tcsh and sh as the remote user's default > shell. > > I pushed the change to scottj97/capistrano. Lee, I will send a pull > request. > > Thanks for everybody's help.
Hello, Did you try replacing the backticks with the $() form ? In capistrano this seems to be auto escaped, in your tcsh shell you may try : sh -c "echo \$(date)" This may be a workaround if tcsh messes only with the backticks. --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
