rM: Work around LD_PRELOAD weirdness on forks on rM 2 (#10490)

reviewable/pr10495/r1
Sunny 12 months ago committed by GitHub
parent d54c5acc11
commit 9e0f185174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -859,7 +859,7 @@ end
function util.diskUsage(dir)
-- safe way of testing df & awk
local function doCommand(d)
local handle = io.popen("df -k " .. d .. " 2>&1 | awk '$3 ~ /[0-9]+/ { print $2,$3,$4 }' 2>&1 || echo ::ERROR::")
local handle = io.popen("df -k " .. d .. " 2>/dev/null | awk '$3 ~ /[0-9]+/ { print $2,$3,$4 }' 2>/dev/null || echo ::ERROR::")
if not handle then return end
local output = handle:read("*all")
handle:close()

Loading…
Cancel
Save