Debugging the shell call

This commit is contained in:
Yannick Reiß 2024-02-18 13:11:19 +01:00
parent 89f414719b
commit 343cf42ab9
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ function M.lookup()
print("Entering the function") print("Entering the function")
-- Setup a http socket and request -- 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 -- Execute the curl command and capture its output
local handle = io.popen(command) local handle = io.popen(command)