From 9d829867e111e21e723b7651f450310ee4eab864 Mon Sep 17 00:00:00 2001 From: Gabriel Moreira Minossi Date: Sat, 16 Jan 2021 16:51:13 -0300 Subject: [PATCH] Bumping version to v0.2.1 --- setup.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.lua b/setup.lua index 88691ba..0b5e41c 100644 --- a/setup.lua +++ b/setup.lua @@ -9,7 +9,7 @@ shell.execute("wget -fq " .. tarMan) shell.setWorkingDirectory("/bin") shell.execute("wget -fq " .. tarBin) -local InfOS = "https://github.com/gordominossi/InfOS/releases/download/v0.2/InfOS.tar" +local InfOS = "https://github.com/gordominossi/InfOS/releases/download/v0.2.1/InfOS.tar" shell.setWorkingDirectory("/home") if not shell.resolve("/home/lib") then @@ -27,7 +27,8 @@ shell.execute("tar -xf InfOS.tar") shell.execute("rm -f InfOS.tar") shell.setWorkingDirectory("/home/") -shell.execute("cp -ru InfOS/Libraries lib") +shell.execute("rm -rf lib") +shell.execute("cp -r InfOS/Libraries lib") shell.execute("rm -f .shrc") shell.execute("cp InfOS/.shrc .shrc") shell.execute("rm -f setup.lua")