From c6adb0d3a8afc0b05024044adba802bf09289f91 Mon Sep 17 00:00:00 2001 From: Keyvan Hedayati Date: Tue, 5 Feb 2019 09:13:11 +0330 Subject: [PATCH] Don't prompt for tag files [Fix #3453] --- app/Subscribers/CommandSubscriber.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Subscribers/CommandSubscriber.php b/app/Subscribers/CommandSubscriber.php index 29bbabcc8476..a879361999a7 100644 --- a/app/Subscribers/CommandSubscriber.php +++ b/app/Subscribers/CommandSubscriber.php @@ -177,7 +177,7 @@ public function onCacheRoutes(Command $command) */ public function onPublishVendors(Command $command) { - $command->call('vendor:publish'); + $command->call('vendor:publish', ['--all' => true]); } /**