From 6d76d027322d0a069f7eba79a35ac457c58b0470 Mon Sep 17 00:00:00 2001 From: Shlee Date: Wed, 15 Jun 2022 19:15:33 +0930 Subject: [PATCH] Update Installer.php --- app/Console/Commands/Installer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/Installer.php b/app/Console/Commands/Installer.php index da8a063b6..0a30725ac 100644 --- a/app/Console/Commands/Installer.php +++ b/app/Console/Commands/Installer.php @@ -376,13 +376,13 @@ class Installer extends Command $this->call('migrate', ['--force' => true]); $this->line(''); $this->info('Importing Cities:'); - $this->callSilently('import:cities'); + $this->call('import:cities'); $this->line(''); $this->info('Creating Federation Instance Actor:'); - $this->callSilently('instance:actor'); + $this->call('instance:actor'); $this->line(''); $this->info('Creating Password Keys for API:'); - $this->callSilently('passport:keys, ['--force' => true]); + $this->call('passport:keys, ['--force' => true]); $confirm = $this->choice('Do you want to create an admin account?', ['Yes', 'No'], 0); if($confirm === 'Yes') {