Cleaned up memory_limit set logic
parent
6cf4ba051c
commit
3aadbaa6c4
10
bin/composer
10
bin/composer
|
@ -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]));
|
||||||
|
|
Loading…
Reference in New Issue