move version generation so it doesnt recreate some of the cached files
This commit is contained in:
10
Makefile
10
Makefile
@@ -17,11 +17,11 @@ clean:
|
||||
@php artisan config:clear
|
||||
@php artisan view:clear
|
||||
@find bootstrap/cache -type f -not -name '.gitignore' -print0 | xargs -0 rm -rf
|
||||
@find storage/app/public -type f -not -name '.gitignore' -print0 | xargs -0 rm -rf
|
||||
@find storage/app -type f -not -name '.gitignore' -not -name public -print0 | xargs -0 rm -rf
|
||||
@find storage/framework/cache/ -type f -or -type d -not -name '.gitignore' -mindepth 1 -print0 | xargs -0 rm -rf
|
||||
@find storage/framework/sessions/ -type f -or -type d -not -name '.gitignore' -print0 | xargs -0 rm -rf
|
||||
@find storage/framework/views/ -type f -or -type d -not -name '.gitignore' -print0 | xargs -0 rm -rf
|
||||
|
||||
@find storage/framework/cache/ -not -name '.gitignore' -mindepth 1 -print0 | xargs -0 rm -rf
|
||||
@find storage/framework/sessions/ -type f -not -name '.gitignore' -mindepth 1 -print0 | xargs -0 rm -rf
|
||||
@find storage/framework/views/ -not -name '.gitignore' -mindepth 1 -print0 | xargs -0 rm -rf
|
||||
|
||||
@find storage/logs -type f -not -name '.gitignore' -print0 | xargs -0 rm -rf
|
||||
|
||||
.PHONY: clean-routes
|
||||
|
||||
Reference in New Issue
Block a user