[latex3-commits] [git/LaTeX3-latex3-l3build] master: Fix handling of "base" folder in installation (23e10ca)
Joseph Wright
joseph.wright at morningstar2.co.uk
Tue Aug 7 11:06:32 CEST 2018
Repository : https://github.com/latex3/l3build
On branch : master
Link : https://github.com/latex3/l3build/commit/23e10ca210f0c16e590fcde0ed47cf9b8c590265
>---------------------------------------------------------------
commit 23e10ca210f0c16e590fcde0ed47cf9b8c590265
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Tue Aug 7 10:06:32 2018 +0100
Fix handling of "base" folder in installation
This one only affects the team so doesn't need to be more widely logged.
>---------------------------------------------------------------
23e10ca210f0c16e590fcde0ed47cf9b8c590265
l3build-install.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/l3build-install.lua b/l3build-install.lua
index 2c42744..88ac5ba 100644
--- a/l3build-install.lua
+++ b/l3build-install.lua
@@ -100,7 +100,7 @@ function install_files(target,full,dry_run)
if tool and module == "base" then
subdir = nil
end
- dir = dir .. (subdir and "/" or "") .. subdir
+ dir = dir .. (subdir and ("/" .. subdir) or "")
local filenames = { }
for _,glob_table in pairs(files) do
for _,glob in pairs(glob_table) do
More information about the latex3-commits
mailing list