VcsRepository: fix undefined index notice in preProcess
parent
40a0c1d411
commit
105477218d
|
@ -295,7 +295,8 @@ class VcsRepository extends ArrayRepository implements ConfigurableRepositoryInt
|
||||||
protected function preProcess(VcsDriverInterface $driver, array $data, $identifier)
|
protected function preProcess(VcsDriverInterface $driver, array $data, $identifier)
|
||||||
{
|
{
|
||||||
// keep the name of the main identifier for all packages
|
// keep the name of the main identifier for all packages
|
||||||
$data['name'] = $this->packageName ?: $data['name'];
|
$dataPackageName = isset($data['name']) ? $data['name'] : null;
|
||||||
|
$data['name'] = $this->packageName ?: $dataPackageName;
|
||||||
|
|
||||||
if (!isset($data['dist'])) {
|
if (!isset($data['dist'])) {
|
||||||
$data['dist'] = $driver->getDist($identifier);
|
$data['dist'] = $driver->getDist($identifier);
|
||||||
|
|
Loading…
Reference in New Issue