summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-25 21:10:32 +0000
committerKarl Berry <karl@freefriends.org>2020-03-25 21:10:32 +0000
commit293dbc2133c205a25092c69c509c285035ec3b21 (patch)
treeb3ce8bea5fd27ff980fbd11d97e54757aefe9f28 /Master/texmf-dist/scripts/l3build/l3build-file-functions.lua
parentde5b7f9cc547d9760dbb31098c198cd898bf67be (diff)
l3build (25mar20)
git-svn-id: svn://tug.org/texlive/trunk@54544 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/l3build/l3build-file-functions.lua')
-rw-r--r--Master/texmf-dist/scripts/l3build/l3build-file-functions.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua b/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua
index 6c420f80a26..7d13fc933ef 100644
--- a/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua
+++ b/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua
@@ -241,7 +241,7 @@ function direxists(dir)
errorlevel =
execute("if not exist \"" .. unix_to_win(dir) .. "\" exit 1")
else
- errorlevel = execute("[ -d " .. dir .. " ]")
+ errorlevel = execute("[ -d '" .. dir .. "' ]")
end
if errorlevel ~= 0 then
return false