[-] 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
end
local function getProjectProcessorOrThrow(name)
local ret = getProjectProcessor(name)
if (not ret) then
auFatal("Missing project", name)
end
return ret
end
local function getCurrentProjectName()
return _auCurrentProject
end
@ -477,8 +467,6 @@ local function linkAuProject(dep, soft)
end
local function importAndLinkProject(dep, soft)
local processor = getProjectProcessorOrThrow(dep)
includeAuProject(dep, soft)
local this = auGetCurrentProjectMeta()