Fix disabling of built-in commands when using ./lnms (#12308)

* Fix disabling of built-in commands when using ./lnms in production

It wasn't working correctly after Laravel upstream changes

* Use nunomaduro/laravel-console-summary

* fix command name

Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
Jellyfrog
2020-11-19 22:51:20 +01:00
committed by GitHub
parent aded238299
commit 820cf1dcca
7 changed files with 131 additions and 104 deletions

2
lnms
View File

@ -31,7 +31,7 @@ $app = require_once __DIR__.'/bootstrap/app.php';
|
*/
define('LIBRENMS_CLI', true);
define('ARTISAN_BINARY', 'lnms');
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);