Rename librenms script to lnms (#9696)

This commit is contained in:
Tony Murray 2019-01-18 11:39:10 -06:00 committed by GitHub
parent 5d41c851db
commit 3a1d13dcd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class Database extends BaseValidation
if ($current === 0 || $current === $latest) {
\Artisan::call('migrate', ['--pretend' => true, '--force' => true]);
if (\Artisan::output() !== "Nothing to migrate.\n") {
$validator->fail("Your database is out of date!", './librenms migrate');
$validator->fail("Your database is out of date!", './lnms migrate');
return;
}
} elseif ($current < $latest) {

View File