Because we want to unify tests environment in the premium plugin. This step should allow us to reuse it easier. [PREMIUM-230]
9 lines
141 B
Bash
Executable File
9 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Install PHP extensions required by MailPoet
|
|
docker-php-ext-install pdo_mysql
|
|
|
|
# Execute the original command
|
|
exec "$@"
|