minecraft-cc-tools/upgrade.lua
2024-05-19 20:17:27 +02:00

17 lines
444 B
Lua

local REPO_PREFIX = 'https://git.trapcloud.fr/guillaumearm/minecraft-cc-tools/raw/branch/master/'
local INSTALL_SCRIPT_NAME = '/install.lua'
local DOWNLOAD_INSTALL_PATH = REPO_PREFIX .. INSTALL_SCRIPT_NAME
local function reinstall()
if fs.exists(INSTALL_SCRIPT_NAME) then
fs.delete(INSTALL_SCRIPT_NAME)
end
shell.execute('wget', DOWNLOAD_INSTALL_PATH, INSTALL_SCRIPT_NAME)
shell.execute('install')
os.reboot()
end
reinstall()