Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/Console/Commands/SetupProduction.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class SetupProduction extends Command
* @var string
*/
protected $signature = 'setup:production {--force}
{--email= login email for the first account}
{--password= password to set for the first account}';
{--email= : Login email for the first account}
{--password= : Password to set for the first account}';

/**
* The console command description.
Expand All @@ -38,7 +38,7 @@ public function __construct()
*/
public function handle()
{
if ((! $this->option('force')) &&  (! $this->confirm('You are about to setup and configure Monica. Do you wish to continue?'))) {
if ((! $this->option('force')) && (! $this->confirm('You are about to setup and configure Monica. Do you wish to continue?'))) {
return;
}

Expand Down