summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/context/lua/mtxrun.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/context/lua/mtxrun.lua')
-rw-r--r--Master/texmf-dist/scripts/context/lua/mtxrun.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/context/lua/mtxrun.lua b/Master/texmf-dist/scripts/context/lua/mtxrun.lua
index 040214178b8..0fb45cc635b 100644
--- a/Master/texmf-dist/scripts/context/lua/mtxrun.lua
+++ b/Master/texmf-dist/scripts/context/lua/mtxrun.lua
@@ -5815,7 +5815,10 @@ function input.expand_variables(instance)
end
if not busy then break end
end
+ local homedir =
+ instance.environment[(os.type == "windows" and 'USERPROFILE') or 'HOME'] or '~'
for k,v in pairs(instance.expansions) do
+ v = v:gsub("^~", homedir)
instance.expansions[k] = v:gsub("\\", '/')
end
end