Fix pack.php to allow running from the downloader

This commit is contained in:
Starbeamrainbowlabs 2016-03-26 14:10:47 +00:00
parent 8ebc66b1e8
commit fc3f751eda
1 changed files with 7 additions and 2 deletions

View File

@ -12,8 +12,13 @@ foreach($module_index as $module)
{
// If the module is optional, the module's id isn't present in the command line arguments, and the special 'all' module id wasn't passed in, skip it
if($module->optional &&
strrpos(implode(" ", $argv), $module->id) === false &&
!in_array("all", $argv)) continue;
(
isset($argv) &&
strrpos(implode(" ", $argv), $module->id) === false &&
!in_array("all", $argv)
)
)
continue;
$module_list[] = $module->id;
}