[-] dumb crash in api

This commit is contained in:
Reece Wilson 2022-09-03 23:51:06 +01:00
parent cf2290444c
commit ec2252b571

View File

@ -380,16 +380,6 @@ local function getProjectProcessor(name)
return scre.processor return scre.processor
end end
local function getProjectProcessorOrThrow(name)
local ret = getProjectProcessor(name)
if (not ret) then
auFatal("Missing project", name)
end
return ret
end
local function getCurrentProjectName() local function getCurrentProjectName()
return _auCurrentProject return _auCurrentProject
end end
@ -477,8 +467,6 @@ local function linkAuProject(dep, soft)
end end
local function importAndLinkProject(dep, soft) local function importAndLinkProject(dep, soft)
local processor = getProjectProcessorOrThrow(dep)
includeAuProject(dep, soft) includeAuProject(dep, soft)
local this = auGetCurrentProjectMeta() local this = auGetCurrentProjectMeta()