From 543fa337184df181eae18b35eb8f80c125ab8a84 Mon Sep 17 00:00:00 2001 From: ruki Date: Sun, 12 Jan 2025 21:27:13 +0800 Subject: fix errors for apis --- xmake/core/base/task.lua | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'xmake/core/base/task.lua') diff --git a/xmake/core/base/task.lua b/xmake/core/base/task.lua index a3fde1913..b792c3637 100644 --- a/xmake/core/base/task.lua +++ b/xmake/core/base/task.lua @@ -368,11 +368,13 @@ end -- new a task instance function task.new(name, info) local instance = table.inherit(task) - local parts = name:split("::", {plain = true}) - instance._NAME = parts[#parts] - table.remove(parts) - if #parts > 0 then - instance._NAMESPACE = table.concat(parts, "::") + if name then + local parts = name:split("::", {plain = true}) + instance._NAME = parts[#parts] + table.remove(parts) + if #parts > 0 then + instance._NAMESPACE = table.concat(parts, "::") + end end instance._INFO = info return instance -- cgit v1.3.1