Skip to content

Commit

Permalink
fix(install): ensure lower case rock names
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Dec 11, 2023
1 parent dff55a1 commit 1f1d0a4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lua/rocks/operations.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ end
---@return Future
operations.install = function(name, version, progress_handle)
cache.invalidate_removable_rocks()
name = name:lower()
local message = version and ("Installing: %s -> %s"):format(name, version) or ("Installing: %s"):format(name)
log.info(message)
if progress_handle then
Expand Down

0 comments on commit 1f1d0a4

Please sign in to comment.