Merge pull request #46 from xefork-YJSoft/develop

의존성 자료가 없는 상태에서 직접 쓰기 방식 쉬운설치 오류 수정
This commit is contained in:
Kijin Sung 2016-01-10 13:51:22 +09:00
commit 86bd1b531d

View file

@ -371,6 +371,11 @@ class autoinstallAdminModel extends autoinstall
$directModuleInstall = FALSE;
$arrUnwritableDir[] = $output->get('path');
}
if(!is_array($package->depends))
{
$package->depends = array();
}
foreach($package->depends as $dep)
{