Skip to content

Commit

Permalink
Fix setup:production command (#909)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Feb 17, 2018
1 parent 8a2f3c0 commit 30cbe53
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 30cbe53

Please sign in to comment.