aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mirror-checker.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mirror-checker.lua')
-rwxr-xr-xmirror-checker.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/mirror-checker.lua b/mirror-checker.lua
index e47f312..86528f3 100755
--- a/mirror-checker.lua
+++ b/mirror-checker.lua
@@ -131,7 +131,7 @@ end
131 131
132local checkExes = function (exe) 132local checkExes = function (exe)
133 local count = io.popen('ps x | grep "' .. exe .. '" | grep -v " grep " | wc -l'):read("*l") 133 local count = io.popen('ps x | grep "' .. exe .. '" | grep -v " grep " | wc -l'):read("*l")
134 D(count .. " " .. exe .. " commands left.") 134 D(count .. " " .. exe .. " commands still running.")
135 return tonumber(count) 135 return tonumber(count)
136end 136end
137 137