mirror of
https://github.com/TangentFoxy/love-release.git
synced 2025-07-28 02:52:20 +00:00
No binary LÖVE 0.10.0 available for macOS
This commit is contained in:
@@ -30,6 +30,9 @@ function s.script(project)
|
|||||||
local bin
|
local bin
|
||||||
if project.loveVersion >= ver'11.0.0' then
|
if project.loveVersion >= ver'11.0.0' then
|
||||||
bin = prefix..".zip"
|
bin = prefix..".zip"
|
||||||
|
elseif project.loveVersion == ver'0.10.0' then
|
||||||
|
utils.io.err("MacOS X: No LÖVE 0.10.0 binary available.\n")
|
||||||
|
os.exit(1)
|
||||||
elseif project.loveVersion >= ver'0.9.0' then
|
elseif project.loveVersion >= ver'0.9.0' then
|
||||||
bin = prefix.."x-x64.zip"
|
bin = prefix.."x-x64.zip"
|
||||||
else
|
else
|
||||||
@@ -42,7 +45,11 @@ function s.script(project)
|
|||||||
-- Amazon AWS which will answer a 403.
|
-- Amazon AWS which will answer a 403.
|
||||||
-- assert(fs.download(url, cache, true))
|
-- assert(fs.download(url, cache, true))
|
||||||
if not fs.exists(cache) then
|
if not fs.exists(cache) then
|
||||||
assert(fs.download(url, cache))
|
local ok, msg = fs.download(url, cache)
|
||||||
|
if not ok then
|
||||||
|
utils.io.err("Tried to download "..url.." to "..cache.."\n")
|
||||||
|
assert(ok, msg)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
fs.delete(bin)
|
fs.delete(bin)
|
||||||
|
Reference in New Issue
Block a user