diff options
-rwxr-xr-x | mirror-checker.lua | 2 |
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 | ||
132 | local checkExes = function (exe) | 132 | local 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) |
136 | end | 136 | end |
137 | 137 | ||