From 8dc71ab5343324418ff7dfbad05b48d9757a35f8 Mon Sep 17 00:00:00 2001 From: Pavel Shevaev Date: Mon, 24 Mar 2025 09:47:15 +0300 Subject: [PATCH] Fixing disabled built-in tasks; Improving missing task error reporting --- taskman.inc.php | 10 +++++----- tasks.inc.php | 3 ++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/taskman.inc.php b/taskman.inc.php index 0db8bce..bef268a 100644 --- a/taskman.inc.php +++ b/taskman.inc.php @@ -2,11 +2,6 @@ namespace taskman; use Exception; -include_once(__DIR__ . '/internal.inc.php'); -include_once(__DIR__ . '/util.inc.php'); -include_once(__DIR__ . '/tasks.inc.php'); -include_once(__DIR__ . '/artefact.inc.php'); - $GLOBALS['TASKMAN_TASKS'] = array(); $GLOBALS['TASKMAN_CLOSURES'] = array(); $GLOBALS['TASKMAN_STACK'] = array(); @@ -21,6 +16,11 @@ $GLOBALS['TASKMAN_ERROR_HANDLER'] = null; $GLOBALS['TASKMAN_START_TIME'] = 0; $GLOBALS['TASKMAN_FILES_CHANGES'] = null; +include_once(__DIR__ . '/internal.inc.php'); +include_once(__DIR__ . '/util.inc.php'); +include_once(__DIR__ . '/tasks.inc.php'); +include_once(__DIR__ . '/artefact.inc.php'); + class TaskmanException extends Exception {} diff --git a/tasks.inc.php b/tasks.inc.php index 6ef6fa8..9165326 100644 --- a/tasks.inc.php +++ b/tasks.inc.php @@ -13,7 +13,8 @@ task('help', function($args = array()) $all = get_tasks(); foreach($all as $task) { - if($filter && (strpos($task->getName(), $filter) === false && strpos($task->getPropOr("alias", ""), $filter) === false)) + if($filter && (strpos($task->getName(), $filter) === false && + strpos($task->getPropOr("alias", ""), $filter) === false)) continue; if(strlen($task->getName()) > $maxlen)