Laravel 5 - provider: publication does not overwrite old files

Hey. I have a problem when the Laravel 5 vendor: publish command does not override the old package assets. Does anyone know if this is the correct behavior or do I need to somehow remove the previous version before I publish?

considers

+4
source share
1 answer

Try using the flag --force.

$ php artisan vendor:publish --force
+9
source

All Articles