diff options
Diffstat (limited to 'xmake/core/base/task.lua')
| -rw-r--r-- | xmake/core/base/task.lua | 12 |
1 files changed, 7 insertions, 5 deletions
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 |
