Commit 2b49f5d327836c49477692e802657ee879fba8cc
1 parent
a09de0d8
Exists in
master
and in
1 other branch
Config must be symlinked before assets:precompile is run
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
config/deploy.example.rb
... | ... | @@ -38,7 +38,7 @@ set :scm_verbose, true |
38 | 38 | set(:current_branch) { `git branch`.match(/\* (\S+)\s/m)[1] || raise("Couldn't determine current branch") } |
39 | 39 | set :branch, defer { current_branch } |
40 | 40 | |
41 | -after 'deploy:update_code', 'errbit:symlink_configs' | |
41 | +before 'deploy:assets:symlink', 'errbit:symlink_configs' | |
42 | 42 | # if unicorn is started through something like runit (the tool which restarts the process when it's stopped) |
43 | 43 | # after 'deploy:restart', 'unicorn:stop' |
44 | 44 | ... | ... |