mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
Fix pack.php to allow running from the downloader
This commit is contained in:
parent
8ebc66b1e8
commit
fc3f751eda
1 changed files with 7 additions and 2 deletions
7
pack.php
7
pack.php
|
@ -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 &&
|
||||
(
|
||||
isset($argv) &&
|
||||
strrpos(implode(" ", $argv), $module->id) === false &&
|
||||
!in_array("all", $argv)) continue;
|
||||
!in_array("all", $argv)
|
||||
)
|
||||
)
|
||||
continue;
|
||||
$module_list[] = $module->id;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue