Skip to content

Commit

Permalink
php_extensions typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Luc45 committed Mar 13, 2024
1 parent a857757 commit c86aabd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified qit
Binary file not shown.
4 changes: 2 additions & 2 deletions src/src/Environment/Environments/E2E/E2EEnvironment.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected function post_up(): void {
/**
* @phpstan-ignore-next-line
*/
if ( ! empty( $this->php_extensions ) ) {
if ( ! empty( $this->env_info->php_extensions ) ) {
$this->output->writeln( '<info>Installing PHP extensions...</info>' );
// Install PHP extensions, if needed.
$this->docker->run_inside_docker( $this->env_info, [ '/bin/bash', '/qit/bin/php-extensions.sh' ], [
'PHP_EXTENSIONS' => implode( ' ', $this->php_extensions ), // Space-separated list of PHP extensions.
'PHP_EXTENSIONS' => implode( ' ', $this->env_info->php_extensions ), // Space-separated list of PHP extensions.
], '0:0' );
}

Expand Down

0 comments on commit c86aabd

Please sign in to comment.