Added test if proc_open function is enabled in RootPackageLoader
parent
639aba6f99
commit
09f774c705
|
@ -157,7 +157,7 @@ class RootPackageLoader extends ArrayLoader
|
||||||
private function guessVersion(array $config)
|
private function guessVersion(array $config)
|
||||||
{
|
{
|
||||||
// try to fetch current version from git branch
|
// try to fetch current version from git branch
|
||||||
if (0 === $this->process->execute('git branch --no-color --no-abbrev -v', $output)) {
|
if (function_exists('proc_open') && 0 === $this->process->execute('git branch --no-color --no-abbrev -v', $output)) {
|
||||||
$branches = array();
|
$branches = array();
|
||||||
$isFeatureBranch = true;
|
$isFeatureBranch = true;
|
||||||
$version = null;
|
$version = null;
|
||||||
|
|
Loading…
Reference in New Issue