From 74e0954dc4b5ee81bb2b6179bb45c6c1a91ef871 Mon Sep 17 00:00:00 2001 From: krautscheid Krautscheid Date: Wed, 23 Jul 2014 15:34:59 -0400 Subject: [PATCH] Don't link tmp/cache on deploy to avoid inappropriate sprockets caching --- config/deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy.rb b/config/deploy.rb index fb5531dc2..de1ab3878 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -5,7 +5,7 @@ set :repo_url, 'https://github.com/projecttacoma/bonnie.git' set :deploy_to, '/var/www/rails_apps/bonnie' -set :linked_dirs, fetch(:linked_dirs).concat(%w{log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system db/backups}) +set :linked_dirs, fetch(:linked_dirs).concat(%w{log tmp/pids tmp/sockets vendor/bundle public/system db/backups}) namespace :deploy do