reverse the make clean to clear out any leftovers

This commit is contained in:
Nabeel Shahzad 2018-01-04 14:48:06 -06:00
parent d15e44d5b6
commit 93f36ca530

View File

@ -12,6 +12,10 @@ all: install
.PHONY: clean
clean:
@php artisan cache:clear
@php artisan route:clear
@php artisan config:clear
@php artisan view:clear
@find bootstrap/cache -type f -not -name '.gitignore' -print0 -delete
@find storage/app/public -type f -not -name '.gitignore' -print0 -delete
@find storage/app -type f -not -name '.gitignore' -not -name public -print0 -delete
@ -19,10 +23,6 @@ clean:
@find storage/framework/sessions -type f -not -name '.gitignore' -print0 -delete
@find storage/framework/views -type f -not -name '.gitignore' -print0 -delete
@find storage/logs -type f -not -name '.gitignore' -print0 -delete
@php artisan cache:clear
@php artisan route:clear
@php artisan config:clear
@php artisan view:clear
.PHONY: clean-routes
clean-routes: