Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function gitGet(user, repo, branch, path, toPath)
- local dl = http.get("https://raw.github.com/"..user.."/"..repo.."/"..branch.."/"..path)
- if dl then
- local file = dl.readAll()
- dl.close()
- local check = fs.exists(toPath)
- if check == true then
- return false
- else
- if toPath == nil then
- local w = fs.open(path, "w")
- else
- local w = fs.open(toPath,"w")
- end
- if w then
- w.write(file)
- w.close()
- return true
- else
- return false
- end
- end
- else
- return false
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement