From 4ca3e9aa51c03dda73b40ec9901deac5d4f11c69 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 25 Jun 2024 15:44:13 +0200 Subject: [PATCH] fix(rocks): windows --- lua/lazy/pkg/rockspec.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/lua/lazy/pkg/rockspec.lua b/lua/lazy/pkg/rockspec.lua index abbd0ba..325f22a 100644 --- a/lua/lazy/pkg/rockspec.lua +++ b/lua/lazy/pkg/rockspec.lua @@ -51,9 +51,6 @@ end ---@param bin string function M.hererocks.bin(bin) local hererocks = Config.options.rocks.root .. "/hererocks/bin" - if Util.is_win then - bin = bin .. ".bat" - end return Util.norm(hererocks .. "/" .. bin) end