From 343cf42ab9ad145d0e984934e4ec7e58521e7331 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Sun, 18 Feb 2024 13:11:19 +0100 Subject: [PATCH] Debugging the shell call --- lua/sourcer/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/sourcer/init.lua b/lua/sourcer/init.lua index cb424aa..9a4da45 100644 --- a/lua/sourcer/init.lua +++ b/lua/sourcer/init.lua @@ -7,7 +7,7 @@ function M.lookup() print("Entering the function") -- Setup a http socket and request - local command = string.format("curl -s '%s'", url) + local command = string.format("curl -s '%s'", "https://nickr.eu") -- Execute the curl command and capture its output local handle = io.popen(command)