Advertisement
MudkipTheEpic

OSRunner Beta Installer

May 11th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. local git = "https://raw.github.com/MudkipTheEpic/ComputerCraft/beta/installer"
  2.  
  3. if not http then
  4.         print("You must have http enabled to install OSRunner")
  5.         return
  6. end
  7.  
  8. local h=http.get(git)
  9. pcall(setfenv(loadstring(h.readAll()),getfenv(1)))
  10. h.close()
  11. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement