fix(lib): remove duplicate version defaulting code

This commit is contained in:
Erica Marigold 2024-12-01 05:35:58 +00:00
parent 97cc64bc81
commit cca939e355

View file

@ -256,13 +256,12 @@ return setmetatable(
return 0, manifest.version
end
local versionOrDefault = version
local versionOrDefault: string = version :: string
if versionOrDefault == "" then
local code, ver = manifestVersion()
if code ~= 0 then
return code
end
versionOrDefault = ver :: string
end
@ -274,15 +273,6 @@ return setmetatable(
return lib.runTool(toolInstallPath)
end
local versionOrDefault: string = version :: string
if versionOrDefault == "" then
local code, ver = manifestVersion()
if code ~= 0 then
return code
end
versionOrDefault = ver :: string
end
local ok, err = pcall(
lib.installTool,
{