t3labcom/capistrano-typo3

View on GitHub
lib/capistrano/tasks/typo3util.cap

Summary

Maintainability
Test Coverage
# vim: ft=ruby:sts=2:expandtab

namespace :typo3 do
  namespace :util do

    desc "flush typo3temp dir"
    task :typo3temp_rm do
      on roles(:all) do
        execute "rm -Rfv #{fetch(:deploy_to)}/shared/typo3temp/*"
      end
    end

  end
end