Skip to content

Commit

Permalink
Fix a regression
Browse files Browse the repository at this point in the history
  • Loading branch information
yanecc committed May 26, 2024
1 parent e007c23 commit 804187b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ function compareVersion(currentVersion, targetVersion)
return -1
end
end

return 0
end

Expand Down Expand Up @@ -234,8 +235,7 @@ function generateMacroMamba(osType, archType)
if osType == "linux" then
archType = "aarch64"
end
elseif archType == "ppc64" and osType == "linux" then
archType = "ppc64le"
elseif archType == "ppc64le" and osType == "linux" then
else
print("Unsupported environment: " .. osType .. "-" .. archType)
os.exit(1)
Expand Down

0 comments on commit 804187b

Please sign in to comment.