Commit: 8cc65803c35691490e2e860c81743882c86adecc
Parent: 96b4377a19a5d059f008f79f32304a56c30a850f
Author: Randy Palamar
Date: Thu, 12 Oct 2023 09:13:32 -0600
vis: build: pass -shell-escape to pdflatex
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.config/vis/build.lua b/.config/vis/build.lua
@@ -17,7 +17,7 @@ vis.events.subscribe(vis.events.FILE_SAVE_PRE, fmt_file)
local function build_files(win)
local build_tex = function (f)
- local cmd = "pdflatex -halt-on-error "
+ local cmd = "pdflatex -halt-on-error -shell-escape "
-- build in draft mode to update references
local err, ostr = vis:pipe(cmd .. "-draftmode " .. f.name)