My guess is that some of your plugins were installed via git clone, and so contain a .git directory inside them on your local machine. This will cause git to skip over them when adding to the top-level repository, and thus they won't be pushed to Heroku.
You can test this theory with a command like this: find . -name .git If it shows more than one line, then you've got extra git repos. You can fix it like this: rm -r `find . -mindepth 2 -name .git` git add . git commit -m "add git cloned plugins" Then you can push to Heroku. Adam --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" 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/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
