Skip to content

Commit

Permalink
fix(selene): download error in Windows (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
sitiom authored Aug 3, 2022
1 parent 3fd8247 commit ec59445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/mason-registry/selene/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ return Pkg.new {
local target = coalesce(
when(platform.is.mac, "selene-%s-macos.zip"),
when(platform.is.linux_x64, "selene-%s-linux.zip"),
when(platform.is.win_x64, "selene-%s-win64.zip")
when(platform.is.win_x64, "selene-%s-windows.zip")
)
return target and target:format(release)
end,
Expand Down

0 comments on commit ec59445

Please sign in to comment.