1
0
Fork 0

Cleaned up memory_limit set logic

pull/9208/head
Simon Berger 2020-09-12 21:09:20 +02:00
parent 6cf4ba051c
commit 3aadbaa6c4
1 changed files with 25 additions and 23 deletions

View File

@ -26,6 +26,10 @@ if (defined('HHVM_VERSION') && version_compare(HHVM_VERSION, '4.0', '>=')) {
if (function_exists('ini_set')) { if (function_exists('ini_set')) {
@ini_set('display_errors', 1); @ini_set('display_errors', 1);
// Set user defined memory limit
if ($memoryLimit = getenv('COMPOSER_MEMORY_LIMIT')) {
@ini_set('memory_limit', $memoryLimit);
} else {
$memoryInBytes = function ($value) { $memoryInBytes = function ($value) {
$unit = strtolower(substr($value, -1, 1)); $unit = strtolower(substr($value, -1, 1));
$value = (int) $value; $value = (int) $value;
@ -48,11 +52,9 @@ if (function_exists('ini_set')) {
if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 1024 * 1024 * 1536) { if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 1024 * 1024 * 1536) {
@ini_set('memory_limit', '1536M'); @ini_set('memory_limit', '1536M');
} }
// Set user defined memory limit unset($memoryInBytes);
if ($memoryLimit = getenv('COMPOSER_MEMORY_LIMIT')) {
@ini_set('memory_limit', $memoryLimit);
} }
unset($memoryInBytes, $memoryLimit); unset($memoryLimit);
} }
putenv('COMPOSER_BINARY='.realpath($_SERVER['argv'][0])); putenv('COMPOSER_BINARY='.realpath($_SERVER['argv'][0]));