From aac62368d987fbd8cb82bb3d3efd17cf8d3a093a Mon Sep 17 00:00:00 2001 From: Bilal Bassam Date: Sun, 12 Apr 2026 19:08:33 +0300 Subject: [PATCH] fix(luvibundle): inconsistent arguments to action callback --- src/lua/luvibundle.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua/luvibundle.lua b/src/lua/luvibundle.lua index 15a1fb5e..99306f98 100644 --- a/src/lua/luvibundle.lua +++ b/src/lua/luvibundle.lua @@ -313,7 +313,7 @@ local function commonBundle(bundlePaths, mainPath, args) function bundle.action(path, action, ...) -- If it's a real path, run it directly. - if uv.fs_access(path, "r") then return action(path) end + if uv.fs_access(path, "r") then return action(path, ...) end -- Otherwise, copy to a temporary folder and run from there local data, err = bundle.readfile(path) if not data then return nil, err end