On Wed, Oct 13, 2010 at 9:51 AM, Blake <[email protected]> wrote: > my setup is a local version of radiant with two custom extensions, and > few installed ones (mailer, mediamaid, settings, share_layouts). I > have a git repo of the project that I can cap deploy to my server > successfully, but the extensions that I installed do not get copied > up, meaning that the 'folder' gets added to git and and empty folder > is pushed to the server.
i believe `./script/extension install` adds extensions as git submodules. try adding: set :git_enable_submodules, 1 to your config/deploy.rb file.
