1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 18:04:03 +00:00

install command: support noninteractive use

This commit is contained in:
Samuel Štancl 2024-08-30 19:25:54 +02:00
parent 2c0f61585d
commit 8b41ea3184

View file

@ -54,7 +54,9 @@ class Install extends Command
$this->components->info('✨️ Tenancy for Laravel successfully installed.');
$this->askForSupport();
if (! $this->option('no-interaction')) {
$this->askForSupport();
}
return 0;
}