summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/arara/rules/frontespizio.yaml
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-05 00:49:50 +0000
committerKarl Berry <karl@freefriends.org>2020-03-05 00:49:50 +0000
commit07ea488e2421f318a60191a7fe69692737301e7b (patch)
tree2bbb589e505d7275488a481a47cd624c4c8f37e2 /Master/texmf-dist/scripts/arara/rules/frontespizio.yaml
parent7ddec71de13ffe715bfa197ad22ee03c165bb593 (diff)
arara (4mar20)
git-svn-id: svn://tug.org/texlive/trunk@54089 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/arara/rules/frontespizio.yaml')
-rw-r--r--Master/texmf-dist/scripts/arara/rules/frontespizio.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/arara/rules/frontespizio.yaml b/Master/texmf-dist/scripts/arara/rules/frontespizio.yaml
index 45f3a4bf4f9..a4637ff9f88 100644
--- a/Master/texmf-dist/scripts/arara/rules/frontespizio.yaml
+++ b/Master/texmf-dist/scripts/arara/rules/frontespizio.yaml
@@ -1,6 +1,6 @@
!config
# Arara, the cool TeX automation tool
-# Copyright (c) 2018, Paulo Roberto Massa Cereda
+# Copyright (c) 2020, Island of TeX
# All rights reserved.
#
# This rule is part of arara.
@@ -9,23 +9,23 @@ name: Frontespizio
authors:
- Francesco Endrici
- Enrico Gregorio
-- Paulo Cereda
+- Island of TeX
commands:
- name: The engine
command: >
@{
- return getCommand(engine, interaction, shell, options, file)
+ return getCommand(engine, interaction, shell, options, reference)
}
- name: The frontispiece
command: >
@{
- base = getBasename(file).concat('-frn');
+ base = getBasename(reference).concat('-frn');
return getCommand(engine, interaction, shell, base);
}
- name: The DVIPS program
command: >
@{
- base = getBasename(file).concat('-frn');
+ base = getBasename(reference).concat('-frn');
eps = base.concat('.eps');
return isTrue(engine == 'latex', getCommand('dvips', '-o',
eps, base), '');
@@ -33,7 +33,7 @@ commands:
- name: The engine
command: >
@{
- return getCommand(engine, interaction, shell, options, file);
+ return getCommand(engine, interaction, shell, options, reference);
}
arguments:
- identifier: engine