Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local rawd = "https://raw.github.com/alakazard12/CommuteOS/master/installer.lua"
- print("Downloading installer...")
- local res = http.get(rawd)
- if not res then
- print("Error downloading installer")
- return
- end
- local fl = fs.open(".temp_CommuteOS-Installer", "w")
- fl.write(res.readAll())
- fl.close()
- res.close()
- shell.run(".temp_CommuteOS-Installer")
- fs.delete(".temp_CommuteOS-Installer")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement