Skip to content

Commit

Permalink
remove default author name
Browse files Browse the repository at this point in the history
  • Loading branch information
Shipu authored Apr 16, 2020
1 parent a473a6b commit 96fea6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/ThemeGeneratorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function consoleAsk()
$this->theme['description'] = !$this->theme['description'] ? '' : title_case($this->theme['description']);

$this->theme['author'] = $this->ask('What is theme author name?', false);
$this->theme['author'] = !$this->theme['author'] ? 'Shipu Ahamed' : title_case($this->theme['author']);
$this->theme['author'] = !$this->theme['author'] ? '' : title_case($this->theme['author']);

$this->theme['version'] = $this->ask('What is theme version?', false);
$this->theme['version'] = !$this->theme['version'] ? '1.0.0' : $this->theme['version'];
Expand Down

0 comments on commit 96fea6a

Please sign in to comment.