Skip to content

Commit

Permalink
fix(tasks): also purge the coverage directory
Browse files Browse the repository at this point in the history
  • Loading branch information
COil committed Oct 26, 2023
1 parent fd61cde commit aa3d03e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ go-dev: ## Switch to the development environment
@rm -rf ./public/assets/*

purge: ## Purge all Symfony cache and logs
@rm -rf ./var/cache/* ./var/logs/*
@rm -rf ./var/cache/* ./var/logs/* ./var/coverage/*


## —— Tests ✅ —————————————————————————————————————————————————————————————————
Expand Down
2 changes: 1 addition & 1 deletion castor.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function go_dev(): void
function purge(): void
{
title(__FUNCTION__, get_command());
run('rm -rf ./var/cache/* ./var/logs/*', quiet: false);
run('rm -rf ./var/cache/* ./var/logs/* ./var/coverage/*', quiet: false);
success();
}

Expand Down

0 comments on commit aa3d03e

Please sign in to comment.