Skip to content

Commit

Permalink
fix: name rockspec file using lower case package name
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Nov 13, 2023
1 parent 4cb549e commit 5c55dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/luarocks-tag-release.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ local function luarocks_tag_release(package_name, package_version, specrev, args
-- version in format 3.0 must follow the format '[%w.]+-[%d]+'
local modrev = string.gsub(package_version, 'v', '')

local rockspec_file_path = package_name .. '-' .. modrev .. '-' .. specrev .. '.rockspec'
local rockspec_file_path = package_name:lower() .. '-' .. modrev .. '-' .. specrev .. '.rockspec'

local luarocks_extra_flags = args.is_debug and ' --verbose ' or ''

Expand Down

0 comments on commit 5c55dc9

Please sign in to comment.