aboutsummaryrefslogtreecommitdiff
path: root/latexmkrc
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-09-15 20:46:48 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-09-15 20:46:48 +0200
commitf6cb1e9d141d881ae6205027626d6643776e833c (patch)
treec9dc4872c7306b1f038bb4f62bc5c114e8378d86 /latexmkrc
parentc9d4ba22a8b6d0d5fb1062701eda8b1af554d422 (diff)
WIP requirements
Diffstat (limited to 'latexmkrc')
-rw-r--r--latexmkrc5
1 files changed, 3 insertions, 2 deletions
diff --git a/latexmkrc b/latexmkrc
index 2ce20fa..5a49064 100644
--- a/latexmkrc
+++ b/latexmkrc
@@ -26,11 +26,12 @@ sub plantuml {
add_cus_dep('txt', 'tex', 0, 'time2tex');
sub time2tex {
- return system "python3 time2tex.py '$_[0].txt'";
+ return system "python3 scripts/time2tex.py '$_[0].txt'";
}
add_cus_dep('toml', 'tex', 0, 'reqs2tex');
+add_cus_dep('toml', 'aux', 0, 'reqs2tex');
sub reqs2tex {
- return system "python3 reqs2tex.py '$_[0].toml'";
+ return system "python3 scripts/reqs2tex.py '$_[0].toml'";
}