From 8b41ea3184d772071ef4d89b0caf9181868175e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 30 Aug 2024 19:25:54 +0200 Subject: [PATCH] install command: support noninteractive use --- src/Commands/Install.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; }