Suppress output while generating extension map

This commit is contained in:
Shivam Mathur 2022-03-15 16:02:28 +05:30
parent 228bfba836
commit 4e4b26a024
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -64,7 +64,7 @@ enable_extensions() {
# Function to get a map of extensions and their dependent shared extensions. # Function to get a map of extensions and their dependent shared extensions.
get_extension_map() { get_extension_map() {
php -d'error_reporting=0' "${src:?}"/scripts/extensions/extension_map.php /tmp/map"$version".orig php -d'error_reporting=0' "${src:?}"/scripts/extensions/extension_map.php /tmp/map"$version".orig >/dev/null 2>&1
} }
# Function to enable extension dependencies which are also extensions. # Function to enable extension dependencies which are also extensions.