Skip to content

Commit 5d1350f

Browse files
authored
Merge branch 'master' into curl
2 parents d52bd63 + 11b0a65 commit 5d1350f

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

.env.default

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export WPT_REPORT_URL=
2626

2727
# Credentials for a database that can be written to and reset.
2828
# WARNING!!! This database will be destroyed between tests. Only use safe database credentials.
29+
# Please note that you must escape _or_ refrain from using # as special character in your credentials.
2930
export WPT_DB_NAME=
3031
export WPT_DB_USER=
3132
export WPT_DB_PASSWORD=

functions.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ function get_env_details() {
214214
function curl_selected_bits($k) { return in_array($k, array('version', 'ssl_version', 'libz_version')); }
215215
$curl_bits = curl_version();
216216
$env['system_utils']['curl'] = implode(' ',array_values(array_filter($curl_bits, 'curl_selected_bits',ARRAY_FILTER_USE_KEY) ));
217-
$env['system_utils']['ghostscript'] = trim( shell_exec( 'gs --version' ) );
218217
if ( class_exists( 'Imagick' ) ) {
219218
$imagick = new Imagick();
220219
$version = $imagick->getVersion();

prepare.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@
8080
function curl_selected_bits(\$k) { return in_array(\$k, array('version', 'ssl_version', 'libz_version')); }
8181
\$curl_bits = curl_version();
8282
\$env['system_utils']['curl'] = implode(' ',array_values(array_filter(\$curl_bits, 'curl_selected_bits',ARRAY_FILTER_USE_KEY) ));
83-
\$env['system_utils']['ghostscript'] = trim( shell_exec( 'gs --version' ) );
8483
if ( class_exists( 'Imagick' ) ) {
8584
\$imagick = new Imagick();
8685
\$version = \$imagick->getVersion();

0 commit comments

Comments
 (0)