Fix for finding source files when they're in the NOMSUPATH
This commit is contained in:
parent
5f676b8e19
commit
c92cf76356
@ -360,6 +360,9 @@ nomsu_environment = Importer({
|
|||||||
if not (self.SOURCE_MAP[source_key] or self.OPTIMIZATION >= 2) then
|
if not (self.SOURCE_MAP[source_key] or self.OPTIMIZATION >= 2) then
|
||||||
local map = { }
|
local map = { }
|
||||||
local file = Files.read(source.filename)
|
local file = Files.read(source.filename)
|
||||||
|
if not file and NOMSU_PREFIX then
|
||||||
|
file = Files.read(tostring(NOMSU_PREFIX) .. "/share/nomsu/" .. tostring(table.concat(NOMSU_VERSION, ".")) .. "/" .. tostring(source.filename))
|
||||||
|
end
|
||||||
if not file then
|
if not file then
|
||||||
error("Failed to find file: " .. tostring(source.filename))
|
error("Failed to find file: " .. tostring(source.filename))
|
||||||
end
|
end
|
||||||
|
@ -235,6 +235,8 @@ nomsu_environment = Importer{
|
|||||||
unless @SOURCE_MAP[source_key] or @OPTIMIZATION >= 2
|
unless @SOURCE_MAP[source_key] or @OPTIMIZATION >= 2
|
||||||
map = {}
|
map = {}
|
||||||
file = Files.read(source.filename)
|
file = Files.read(source.filename)
|
||||||
|
if not file and NOMSU_PREFIX
|
||||||
|
file = Files.read("#{NOMSU_PREFIX}/share/nomsu/#{table.concat NOMSU_VERSION, "."}/#{source.filename}")
|
||||||
if not file
|
if not file
|
||||||
error "Failed to find file: #{source.filename}"
|
error "Failed to find file: #{source.filename}"
|
||||||
nomsu_str = file\sub(source.start, source.stop)
|
nomsu_str = file\sub(source.start, source.stop)
|
||||||
|
Loading…
Reference in New Issue
Block a user