Good Morning,
I want to create a little Homebrew that updates the Files of a Translation Patch. The Programm will be written in Lua but the Problem is that I am not able to download the Master-Repo from Github without the git clone Command...
local http = require("socket.http")
local body, code = http.request("https://github.com/OngoGablogian/Puyo_Puyo_Tetris_Translation/archive/master.zip")
if not body then error(code) end
local f = assert(io.open('master.zip', 'wb')) -- open in "binary" mode
f:write(body)
f:close()
(I get an empty master.zip File.)
Thanks for helping me,
Lucas
PS:Hopefully you did understand me because I am very bad in English