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")