aboutsummaryrefslogtreecommitdiff
path: root/nomsu_environment.lua
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-03-27 14:40:14 -0700
committerBruce Hill <bruce@bruce-hill.com>2019-03-27 14:40:28 -0700
commitc92cf76356129b69c15c3aeca30c745671874d88 (patch)
treeaeaea3b884da36a44811150078ef5240d1152c06 /nomsu_environment.lua
parent5f676b8e19167e4b2f0cab817000134d8adecf09 (diff)
Fix for finding source files when they're in the NOMSUPATH
Diffstat (limited to 'nomsu_environment.lua')
-rw-r--r--nomsu_environment.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/nomsu_environment.lua b/nomsu_environment.lua
index 9e57cc6..6671f38 100644
--- a/nomsu_environment.lua
+++ b/nomsu_environment.lua
@@ -360,6 +360,9 @@ nomsu_environment = Importer({
if not (self.SOURCE_MAP[source_key] or self.OPTIMIZATION >= 2) then
local map = { }
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
error("Failed to find file: " .. tostring(source.filename))
end