Hi, I think I have my deploy.rb setup right to only copy the changed
files. But when i cap deploy it tars up the whole repo each time. What
am i doing wrong?

# changed to protect the innocent
set :application,   "foo"
set :domain,        "www.foo.com"
set :user,          "user"

# local git repos
set :scm,           :git
set :branch,        "master"
set :repository,    "file://."
set :deploy_via,    :copy
set :copy_cache,    true
set :copy_exclude,  [".git"]
set :git_shallow_clone, 1

set :use_sudo,      false
set :deploy_to,     "/home/#{user}/apps/#{application}"
set :chmod755,      "app config db lib public vendor script script/*
public/disp*"

set :mongrel_port,  "4028"
set :mongrel_nodes, "1"

role :app,          domain
role :web,          domain
role :db,           domain, :primary => true




--~--~---------~--~----~------------~-------~--~----~
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/capistrano
-~----------~----~----~----~------~----~------~--~---

Reply via email to