14 lines
270 B
Plaintext
14 lines
270 B
Plaintext
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
set_time_limit(0);
|
||
|
|
||
|
if (ini_get('memory_limit') > 0 && (int)ini_get('memory_limit') < 784) {
|
||
|
ini_set('memory_limit', '784M');
|
||
|
}
|
||
|
|
||
|
require_once __DIR__ . '/../intaro.retailcrm/install/version.php';
|
||
|
|
||
|
echo $arModuleVersion['VERSION'];
|
||
|
exit(0);
|