diff --git a/src/scripts/macos.lua b/src/scripts/macos.lua index fb409c9..e5c3bda 100644 --- a/src/scripts/macos.lua +++ b/src/scripts/macos.lua @@ -43,7 +43,7 @@ function s.script(project) prefix = "love-"..tostring(project.loveVersion).."-macos" bin = prefix.."x-ub.zip" end - local url = "https://bitbucket.org/rude/love/downloads/"..bin + local url = "https://github.com/love2d/love/releases/download/"..tostring(project.loveVersion).."/"..bin local cache = utils.cache.."/"..bin -- Can't cache the archive because luarocks functions use a HEAD diff --git a/src/scripts/windows.lua b/src/scripts/windows.lua index 8319a39..e041709 100644 --- a/src/scripts/windows.lua +++ b/src/scripts/windows.lua @@ -35,7 +35,7 @@ local function release(script, project, arch) prefix = "love-"..tostring(project.loveVersion).."-win" dir, bin = prefix..arch.."/", prefix..arch..".zip" end - local url = "https://bitbucket.org/rude/love/downloads/"..bin + local url = "https://github.com/love2d/love/releases/download/"..tostring(project.loveVersion).."/"..bin local cache = utils.cache.."/"..bin -- Can't cache the archive because luarocks functions use a HEAD