From bb05fa9dc6709db6d3da72b1755615b3c4a18eff Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 27 Jun 2025 02:33:16 -0300 Subject: debug --- binary/all_in_one | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'binary') diff --git a/binary/all_in_one b/binary/all_in_one index 545acad7..235e6155 100755 --- a/binary/all_in_one +++ b/binary/all_in_one @@ -495,7 +495,9 @@ local function main() print("----------------------------------------------------------------") local vers = manif.get_versions(queries.from_dep_string(name), "one") if not next(vers) then - local ok = os.execute("LUAROCKS_CONFIG='" .. CONFIG_FILE .. "' ./luarocks install --no-project '--tree=" .. LUA_MODULES .. "' " .. use) + local command = "LUAROCKS_CONFIG='" .. CONFIG_FILE .. "' ./luarocks install --no-project '--tree=" .. LUA_MODULES .. "' " .. use + print(command) + local ok = os.execute(command) if ok ~= 0 and ok ~= true then error("Failed building dependency: " .. name) end -- cgit v1.2.3-55-g6feb