Skip to content

Commit 8918145

Browse files
committed
do the check as the last step
1 parent a29671e commit 8918145

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/Console/Commands/Install.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function handle()
9393

9494
// Install Backpack Basset
9595
$this->progressBlock('Installing Basset');
96-
$this->executeArtisanProcess('basset:install --no-interaction');
96+
$this->executeArtisanProcess('basset:install --no-check');
9797
$this->closeProgressBlock();
9898

9999
// Optional commands
@@ -113,6 +113,8 @@ public function handle()
113113
$this->closeProgressBlock();
114114
}
115115

116+
//execute basset checks
117+
$this->call('basset:check');
116118
// Done
117119
$url = Str::of(config('app.url'))->finish('/')->append('admin/');
118120
$this->infoBlock('Backpack installation complete.', 'done');

0 commit comments

Comments
 (0)