Skip to content

Commit

Permalink
Merge pull request #103 from L0RD-ZER0/fix/admin-email
Browse files Browse the repository at this point in the history
Fix admin-email flag typo
  • Loading branch information
mrrobot47 authored Sep 16, 2024
2 parents bd0ce5c + dc09b8f commit f8858dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PHP.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public function create( $args, $assoc_args ) {
$this->site_data['db_port'] = empty( $arg_host_port[1] ) ? '3306' : $arg_host_port[1];
}
}
$this->site_data['app_admin_email'] = \EE\Utils\get_flag_value( $assoc_args, 'admin_email', strtolower( 'admin@' . $this->site_data['site_url'] ) );
$this->site_data['app_admin_email'] = \EE\Utils\get_flag_value( $assoc_args, 'admin-email', strtolower( 'admin@' . $this->site_data['site_url'] ) );
$this->skip_status_check = \EE\Utils\get_flag_value( $assoc_args, 'skip-status-check' );
$this->force = \EE\Utils\get_flag_value( $assoc_args, 'force' );

Expand Down

0 comments on commit f8858dc

Please sign in to comment.