aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apt-panopticon.lua
diff options
context:
space:
mode:
authoronefang2019-11-26 00:48:25 +1000
committeronefang2019-11-26 00:48:25 +1000
commit2742cf8a2961a478aaeb4761b3d71e70e56f8417 (patch)
tree35491d11ca290d4c01d034635cbba690976021c3 /apt-panopticon.lua
parentMore curl status codes and messages. (diff)
downloadapt-panopticon-2742cf8a2961a478aaeb4761b3d71e70e56f8417.zip
apt-panopticon-2742cf8a2961a478aaeb4761b3d71e70e56f8417.tar.gz
apt-panopticon-2742cf8a2961a478aaeb4761b3d71e70e56f8417.tar.bz2
apt-panopticon-2742cf8a2961a478aaeb4761b3d71e70e56f8417.tar.xz
Make fork() more like execute().
Diffstat (limited to 'apt-panopticon.lua')
-rwxr-xr-xapt-panopticon.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-panopticon.lua b/apt-panopticon.lua
index ee64c7c..39235c2 100755
--- a/apt-panopticon.lua
+++ b/apt-panopticon.lua
@@ -345,7 +345,7 @@ local execute = function (s)
345end 345end
346 346
347local fork = function(s) 347local fork = function(s)
348 D(" executing <code>" .. s .. "</code>") 348 D(" forking <pre><code>" .. s .. "</code></pre>")
349 os.execute(s .. " &") 349 os.execute(s .. " &")
350end 350end
351 351