From 30a2dba8b9748bac34e0fd578b107ab955369125 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Wed, 5 Mar 2025 01:26:47 -0300 Subject: add debug mode where we load .tl files directly --- src/bin/luarocks | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/bin') diff --git a/src/bin/luarocks b/src/bin/luarocks index 56caaa60..8a74d033 100755 --- a/src/bin/luarocks +++ b/src/bin/luarocks @@ -1,9 +1,17 @@ #!/usr/bin/env lua +if os.getenv("LUAROCKS_DEBUG") then + local tl = require("tl") + tl.path = "./src/?.tl" + tl.loader() + local tl_loader = table.remove(package.searchers, 2) + table.insert(package.searchers, 1, tl_loader) +end + -- Load cfg first so that the loader knows it is running inside LuaRocks + local cfg = require("luarocks.core.cfg") -local loader = require("luarocks.loader") local cmd = require("luarocks.cmd") local description = "LuaRocks main command-line interface" -- cgit v1.2.3-55-g6feb