We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 235f943 + c67dd10 commit cbc0993Copy full SHA for cbc0993
scripts/provision/configure_environment_recurring.sh
@@ -11,6 +11,9 @@ function process_php_config () {
11
sed -i "s|display_errors = Off|display_errors = On|g" ${php_ini_path}
12
sed -i "s|display_startup_errors = Off|display_startup_errors = On|g" ${php_ini_path}
13
sed -i "s|error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT|error_reporting = E_ALL|g" ${php_ini_path}
14
+
15
+ # TODO: Fix for a bug, should be removed in 3.0
16
+ sed -i "s|:/vendor/phpunit/phpunit|:${guest_magento_dir}/vendor/phpunit/phpunit|g" ${php_ini_path}
17
fi
18
done
19
}
@@ -28,6 +31,7 @@ function init_php56 () {
28
31
# Enable trace printing and exit on the first error
29
32
set +x
30
33
34
+guest_magento_dir=$2
35
use_php7=$4
36
vagrant_dir="/vagrant"
37
0 commit comments