From 411825175667285b39cc54cfe0efd26105c92520 Mon Sep 17 00:00:00 2001 From: Guldoman Date: Mon, 1 Apr 2024 09:20:25 +0200 Subject: Only return functions from `lpm.run` --- src/lpm.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lpm.lua b/src/lpm.lua index d1155e4..a4cb851 100644 --- a/src/lpm.lua +++ b/src/lpm.lua @@ -2178,7 +2178,7 @@ function lpm.run(ARGS) error("unknown command: " .. ARGS[2]) elseif result == true and JSON then io.stdout:write(json.encode({ actions = actions, warnings = warnings })) - else + elseif type(result) == "function" then return result end end -- cgit v1.2.3