diff --git a/src/Commands/Install.php b/src/Commands/Install.php index 09e720bb..6a67fa3f 100644 --- a/src/Commands/Install.php +++ b/src/Commands/Install.php @@ -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; }