Fix parallelo (#130)

This commit is contained in:
Thomas Zilio 2018-01-27 11:50:29 +01:00
parent bdbe0e9a01
commit b1114bd98c
1 changed files with 2 additions and 1 deletions

View File

@ -106,7 +106,8 @@ class Update
foreach ($modules as $value) {
$infos = pathinfo($value);
$module = end(explode('/', dirname($infos['dirname'])));
$temp = explode('/', dirname($infos['dirname']));
$module = end($temp);
$value = str_replace('_', '.', $infos['filename']);