cron:run is not a default command in Laravel. If you want to run the cronjobs defined in your app/Console/Kernel.php you would run php artisan schedule:run >> /dev/null 2>&1.
Documentation: https://laravel.com/docs/6.x/scheduling#scheduling-artisan-commands
So far I see two incosistensies. First of all you're using a different command. What is this command doing? Maybe it runs something on the background as well?
Secondly, you use one > in your output. Normally this shouldn't be an issue, since they both right to /dev/null, but it's recommended to use the double variant
Source: https://unix.stackexchange.com/questions/171025/what-does-do-vs