Skip to content

Commit aa1c957

Browse files
committed
fix(rocks): build.type instead of build.build_type
1 parent 4733611 commit aa1c957

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lua/lazy/pkg/rockspec.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ local Util = require("lazy.util")
1010
---@field package string
1111
---@field version string
1212
---@field dependencies string[]
13-
---@field build? {build_type?: string, modules?: any[]}
13+
---@field build? {type?: string, modules?: any[]}
1414
---@field source? {url?: string}
1515

1616
---@class RockManifest
@@ -273,9 +273,9 @@ function M.get(plugin)
273273
-- has a complex build process
274274
or (
275275
rockspec.build
276-
and rockspec.build.build_type
277-
and rockspec.build.build_type ~= "none"
278-
and not (rockspec.build.build_type == "builtin" and not rockspec.build.modules)
276+
and rockspec.build.type
277+
and rockspec.build.type ~= "none"
278+
and not (rockspec.build.type == "builtin" and not rockspec.build.modules)
279279
)
280280

281281
if not use then

0 commit comments

Comments
 (0)