robersonfaria / laravel-database-schedule

Manage your Laravel Task Scheduling in a friendly interface and save schedules to the database.
GNU General Public License v3.0
321 stars 53 forks source link

avoid passing argument key to command line argument #50

Closed thyseus closed 2 years ago

thyseus commented 2 years ago

Assume we have a command:

        protected $signature = 'group:backup {server}';

and configure laravel-database-schedule to run, currently it runs:

php artisan group:backup server='my-server'

which is wrong; it should run:

php artisan group:backup my-server

This MR fixes that problem.

robersonfaria commented 2 years ago

pr broke tests, could you check?

Thanks

thyseus commented 2 years ago

cant reopen the MR, creating a new one...