This commit is contained in:
2026-02-14 15:21:47 +01:00
parent a2ddcfa030
commit 51224a46a2
7 changed files with 327 additions and 16 deletions

View File

@@ -40,5 +40,6 @@ shell.setWorkingDirectory(os.getenv("HOME"))
local home_shrc = shell.resolve(".shrc")
if fs.exists(home_shrc) then
assert(loadfile(shell.resolve("source", "lua")))(home_shrc)
local resolved = shell.resolve("source", "lua")
assert(loadfile(resolved))(home_shrc)
end