We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29671e commit 8918145Copy full SHA for 8918145
src/app/Console/Commands/Install.php
@@ -93,7 +93,7 @@ public function handle()
93
94
// Install Backpack Basset
95
$this->progressBlock('Installing Basset');
96
- $this->executeArtisanProcess('basset:install --no-interaction');
+ $this->executeArtisanProcess('basset:install --no-check');
97
$this->closeProgressBlock();
98
99
// Optional commands
@@ -113,6 +113,8 @@ public function handle()
113
114
}
115
116
+ //execute basset checks
117
+ $this->call('basset:check');
118
// Done
119
$url = Str::of(config('app.url'))->finish('/')->append('admin/');
120
$this->infoBlock('Backpack installation complete.', 'done');
0 commit comments