cleanCache();\""); }); /** * Remove files that can be used to compromise Magento */ task('deploy:clear_version', function () { run("rm -f {{release_or_current_path}}/LICENSE.html"); run("rm -f {{release_or_current_path}}/LICENSE.txt"); run("rm -f {{release_or_current_path}}/LICENSE_AFL.txt"); run("rm -f {{release_or_current_path}}/RELEASE_NOTES.txt"); })->hidden(); after('deploy:update_code', 'deploy:clear_version'); /** * Main task */ desc('Deploys your project'); task('deploy', [ 'deploy:prepare', 'deploy:cache:clear', 'deploy:publish', ]);