Skip to content

Commit

Permalink
Merge branch 'master' into curl
Browse files Browse the repository at this point in the history
  • Loading branch information
grooverdan committed Oct 12, 2022
2 parents d52bd63 + 11b0a65 commit 5d1350f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions .env.default
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export WPT_REPORT_URL=

# Credentials for a database that can be written to and reset.
# WARNING!!! This database will be destroyed between tests. Only use safe database credentials.
# Please note that you must escape _or_ refrain from using # as special character in your credentials.
export WPT_DB_NAME=
export WPT_DB_USER=
export WPT_DB_PASSWORD=
Expand Down
1 change: 0 additions & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ function get_env_details() {
function curl_selected_bits($k) { return in_array($k, array('version', 'ssl_version', 'libz_version')); }
$curl_bits = curl_version();
$env['system_utils']['curl'] = implode(' ',array_values(array_filter($curl_bits, 'curl_selected_bits',ARRAY_FILTER_USE_KEY) ));
$env['system_utils']['ghostscript'] = trim( shell_exec( 'gs --version' ) );
if ( class_exists( 'Imagick' ) ) {
$imagick = new Imagick();
$version = $imagick->getVersion();
Expand Down
1 change: 0 additions & 1 deletion prepare.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
function curl_selected_bits(\$k) { return in_array(\$k, array('version', 'ssl_version', 'libz_version')); }
\$curl_bits = curl_version();
\$env['system_utils']['curl'] = implode(' ',array_values(array_filter(\$curl_bits, 'curl_selected_bits',ARRAY_FILTER_USE_KEY) ));
\$env['system_utils']['ghostscript'] = trim( shell_exec( 'gs --version' ) );
if ( class_exists( 'Imagick' ) ) {
\$imagick = new Imagick();
\$version = \$imagick->getVersion();
Expand Down

0 comments on commit 5d1350f

Please sign in to comment.