aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apt-panopticon.lua
diff options
context:
space:
mode:
Diffstat (limited to 'apt-panopticon.lua')
-rwxr-xr-xapt-panopticon.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua
index 23ea2f0..d6bc05a 100755
--- a/apt-panopticon.lua
+++ b/apt-panopticon.lua
@@ -221,7 +221,7 @@ local testing = function(t, host)
221end 221end
222 222
223local execute = function (s) 223local execute = function (s)
224 D(" executing " .. s) 224 D(" executing <pre><code>" .. s .. "</code></pre>")
225 --[[ Damn os.execute() 225 --[[ Damn os.execute()
226 Lua 5.1 says it returns "a status code, which is system-dependent" 226 Lua 5.1 says it returns "a status code, which is system-dependent"
227 Lua 5.2 says it returns true/nil, "exit"/"signal", the status code. 227 Lua 5.2 says it returns true/nil, "exit"/"signal", the status code.
@@ -240,7 +240,7 @@ local execute = function (s)
240end 240end
241 241
242local fork = function(s) 242local fork = function(s)
243 D(" executing " .. s) 243 D(" executing <code>" .. s .. "</code>")
244 os.execute(s .. " &") 244 os.execute(s .. " &")
245end 245end
246 246