From ff104de862603db90be61b030aa1c778a48e00e4 Mon Sep 17 00:00:00 2001 From: lvjr Date: Fri, 22 Nov 2024 16:50:22 +0800 Subject: [PATCH] add a comment for miktex --- texfindpkg.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/texfindpkg.lua b/texfindpkg.lua index 9cff051..6427bb9 100644 --- a/texfindpkg.lua +++ b/texfindpkg.lua @@ -301,6 +301,8 @@ local function installSomePackages(list) end tfpExecute("tlmgr install " .. pkgs) else + -- miktex fails if one of the packages is already installed + -- so we install miktex packages one by one for _, p in ipairs(list) do tfpRealPrint("installing miktex package: " .. p) tfpExecute("miktex packages install " .. p)