fix(rojo): pass directory to action from map

This commit is contained in:
Erica Marigold 2024-12-03 10:50:07 +00:00
parent 00d991357a
commit 3e03837d02

View file

@ -40,7 +40,7 @@ return function(packageDirectory: string?): boolean
-- file predicates, if present, we execute the action and report our status
for path, action in PATH_ACTION_MAP do
if fs.isFile(`{packageDirectory}{PLATFORM_SEP}{path}`) then
local status = action()
local status = action(packageDirectory)
return if status ~= nil then status == 0 else true
end
end