From 6920352c0edb87ddcef2634d1497e255f0a42603 Mon Sep 17 00:00:00 2001 From: Tokumeikoi Date: Sat, 8 Feb 2020 16:07:20 +0800 Subject: [PATCH] optimization install --- app/Console/Commands/V2boardInstall.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/Console/Commands/V2boardInstall.php b/app/Console/Commands/V2boardInstall.php index 7b88643e..442fa057 100644 --- a/app/Console/Commands/V2boardInstall.php +++ b/app/Console/Commands/V2boardInstall.php @@ -41,6 +41,13 @@ class V2boardInstall extends Command */ public function handle() { + $this->info(" + __ ______ ____ _ + \ \ / /___ \| __ ) ___ __ _ _ __ __| | + \ \ / / __) | _ \ / _ \ / _` | '__/ _` | + \ V / / __/| |_) | (_) | (_| | | | (_| | + \_/ |_____|____/ \___/ \__,_|_| \__,_| + "); if (\File::exists(base_path() . '/.lock')) { abort(500, 'V2board 已安装,如需重新安装请删除目录下.lock文件'); } @@ -79,6 +86,7 @@ class V2boardInstall extends Command } catch (\Exception $e) { } } + $this->info('数据库导入完成'); $email = ''; while (!$email) { $email = $this->ask('请输入管理员邮箱?');