From d7386a591a6acf78092ae7be17e9b3ec8e668f0d Mon Sep 17 00:00:00 2001 From: J Reece Wilson Date: Fri, 23 Feb 2024 11:47:02 +0000 Subject: [PATCH] [*] Linux regression --- Public/paths.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Public/paths.lua b/Public/paths.lua index 2929b5d..50eec46 100644 --- a/Public/paths.lua +++ b/Public/paths.lua @@ -14,6 +14,7 @@ local function resolvePathAbs2(key, rootKey) local val = auGetSetting(key) if (not val) then return end local path = os.realpath(auGetSetting(rootKey) .. val) + if (not path) then path = auGetSetting(rootKey) .. val end local key2 = "sAbs" .. key:sub(5) if (Aurora.Settings[key2]) then return Aurora.Settings[key2] end Aurora.Settings[key2] = path @@ -22,7 +23,7 @@ end local function resolvePathAbs(key) local path = resolvePathAbs2(key, "sAbsRoot") - + if (not path) then return end