1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-14 09:26:54 +00:00
opus/sys/apps/mount.lua
Kan18 09be81be27 lua 5.2 compatibility (#14)
compatibility update - making a few changes in next commit...
2019-07-20 16:19:30 -06:00

7 lines
128 B
Lua

local args = { ... }
local target = table.remove(args, 1)
target = shell.resolve(target)
fs.mount(target, table.unpack(args))