mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-21 11:39:23 +01:00
9 lines
242 B
Lua
Executable File
9 lines
242 B
Lua
Executable File
|
|
local args = {...}
|
|
|
|
local success, reason = require("archive").unpack(args[1], require("filesystem").path(args[1]))
|
|
if not success then
|
|
require("GUI").error(reason)
|
|
end
|
|
|
|
require("computer").pushSignal("MineOSCore", "updateFileList") |