I have my assets on production server on /home/name/apps/myapp/shared/assets"
I'm seeing as this directory is growing quickly. Now the weight folder is 40 Mb but my current assets have weight of 3.2 mb
My question is how can I clean this folder of old assets with a capistrano custom task. I only need the last assets when I make the last cap deploy
Edited:
Capistrano task for precompile:
namespace :assets do
task :precompile, :roles => :web, :except => { :no_release => true } do
from = source.next_revision(current_revision)
if capture("cd #{latest_release} && #{source.local.log(from)} vendor/assets/ app/assets/ | wc -l").to_i > 0
run_locally("rm -rf public/assets/*")
run_locally "bundle exec rake assets:precompile"
find_servers_for_task(current_task).each do |server|
run_locally "rsync -vr --exclude='.DS_Store' --recursive --times --rsh=ssh --compress --human-readable --progress public/assets #{user}@#{server.host}:#{shared_path}/"
end
else
puts.info "Skipping asset pre-compilation because there were no asset changes"
end
end
end
I was precompiled asset on production server but I have changed to precompile asset to local machine with rsync.
public/assetsfolder, or yourapp/assetsfolder? – theIV Jan 4 at 18:41--deleteto your rsync task? From the rsync man page:--delete delete extraneous files from dest dirs. – theIV Jan 4 at 19:15