diff options
author | Guldoman <giulio.lettieri@gmail.com> | 2024-04-01 09:20:25 +0200 |
---|---|---|
committer | Guldoman <giulio.lettieri@gmail.com> | 2024-04-01 09:20:25 +0200 |
commit | 411825175667285b39cc54cfe0efd26105c92520 (patch) | |
tree | 1f117fc5b2a5506249ed26f2d23eddf7454ffb5b | |
parent | 1a6547231efc0231cd357060a84e7e47205dd891 (diff) | |
download | lite-xl-plugin-manager-411825175667285b39cc54cfe0efd26105c92520.tar.gz lite-xl-plugin-manager-411825175667285b39cc54cfe0efd26105c92520.zip |
Only return functions from `lpm.run`
-rw-r--r-- | src/lpm.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |