Hi Adam,
Thanks for the reply. There was a .git repository in the
active_scaffold directory. I deleted it and pushed... but
activescaffold files still did not appear in the vendor/plugins/
active_scaffold.
Also during the push previously checked in migrations would not run
and I got:
Running migrations...
rake aborted!
could not connect to server: Connection timed out
Is the server running on host "10.252.154.195" and accepting
TCP/IP connections on port 5432?
(See full trace by running task with --trace)
(in /mnt/home/userapps/29695)
App restarting...
######################################################################## 100.0
%
HTTP Basic: Access denied.
I ran the migrations locally, but thought I would report it.
Thanks,
Noah Thorp
Rixiform Inc.
www.rixiform.com
On Oct 13, 2008, at 5:29 PM, Adam Wiggins wrote:
>
> 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
-~----------~----~----~----~------~----~------~--~---