Skip to content
Snippets Groups Projects
Commit 9f4c3932 authored by bobcanthelpyou's avatar bobcanthelpyou
Browse files

gluon-mesh-vpn-core: fix luacheck warnings

./gluon-wan:25:1: (W122) setting read-only field ? of global arg
./gluon-wan:29:1: (W311) value assigned to variable ok is unused
parent 709c1b1b
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment