79477785

Date: 2025-03-01 15:02:06
Score: 1
Natty:
Report link

Try removing the deploy cache on the server using: rm -rf /var/www/path/.dep/repo

Also add the task to clear the cache to the project's deploy file:

task('deploy:clear_cache', function () {
run('rm -rf {{deploy_path}}/.dep/repo');
});

before('deploy:update_code', 'deploy:clear_cache');
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Henrique Sales