Advertisement
programcreator

Delta: Installer

Feb 13th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. --[[
  2.     Updater Script
  3. ]]--
  4.  
  5. local path = ...
  6. print(path)
  7.  
  8. local handle = http.get("https://raw.githubusercontent.com/ccTCP/Delta/master/Releases/latest.lua")
  9. local f = loadstring(handle.readAll())
  10. setfenv(f,_G)
  11. f(path)
  12.  
  13. --Just a test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement