reverse the make clean to clear out any leftovers
This commit is contained in:
8
Makefile
8
Makefile
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user