aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorsitiom <sitiom@proton.me>2022-08-03 18:33:32 +0800
committerGitHub <noreply@github.com>2022-08-03 12:33:32 +0200
commitec59445db532f2e78eb254120b6774311179c155 (patch)
treea76e4c0ce2c1108ee0ce7a77fa8afad6e69fc88a /lua
parentchore: update generated code (#234) (diff)
downloadmason-ec59445db532f2e78eb254120b6774311179c155.tar
mason-ec59445db532f2e78eb254120b6774311179c155.tar.gz
mason-ec59445db532f2e78eb254120b6774311179c155.tar.bz2
mason-ec59445db532f2e78eb254120b6774311179c155.tar.lz
mason-ec59445db532f2e78eb254120b6774311179c155.tar.xz
mason-ec59445db532f2e78eb254120b6774311179c155.tar.zst
mason-ec59445db532f2e78eb254120b6774311179c155.zip
fix(selene): download error in Windows (#233)
Diffstat (limited to 'lua')
-rw-r--r--lua/mason-registry/selene/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/mason-registry/selene/init.lua b/lua/mason-registry/selene/init.lua
index 3b341981..b2ae3131 100644
--- a/lua/mason-registry/selene/init.lua
+++ b/lua/mason-registry/selene/init.lua
@@ -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,