Merge pull request #1742 from bobcanthelpyou/luacheck_gluon-mesh-vpn-core

gluon-mesh-vpn-core: fix luacheck warnings
This commit is contained in:
Matthias Schiffer 2019-06-16 17:39:24 +02:00 committed by GitHub
commit 80b6e7f18f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,12 +21,11 @@ if ok ~= 0 then
io.stderr:write(string.format("gluon-wan: unable to change to group: %s\n", err))
os.exit(1)
end
local args = {[0] = arg[1], unpack(arg)}
table.remove(args, 1)
arg[0] = arg[1]
table.remove(arg, 1)
print(arg[0], unpack(arg))
ok, err = unistd.execp(arg[0], arg)
local _
_, err = unistd.execp(args[0], args)
io.stderr:write(string.format("gluon-wan: exec failed: %s\n", err))
os.exit(1)