mirror of
https://github.com/pesde-pkg/tooling.git
synced 2025-04-04 10:50:57 +01:00
fix(lib): remove duplicate version defaulting code
This commit is contained in:
parent
97cc64bc81
commit
cca939e355
1 changed files with 1 additions and 11 deletions
|
@ -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,
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue