Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-the-Diamond authored and github-actions[bot] committed Mar 6, 2024
1 parent e087cc4 commit 0b44e07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/builder/src/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ public function welcome(): void
public function publish_configuration(): void
{
if (confirm('Do you wish to publish the configuration?', true)) {
if(!config()->has('builder')){
if (! config()->has('builder')) {
info('Publishing Builder Configuration...');
$this->callSilent('vendor:publish', ['--tag' => 'builder-config']);
}else{
} else {
warning('The Builder config already exist. The config will not be published.');
}
}
Expand Down

0 comments on commit 0b44e07

Please sign in to comment.