summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-05 22:09:28 +0000
committerKarl Berry <karl@freefriends.org>2020-03-05 22:09:28 +0000
commitab261ba95f775746985b4542c78c4492e405ffe5 (patch)
tree140fe23ea545705d63155ed96cad1ea72bec0305 /Master/texmf-dist/scripts
parent0116d6e6578382e9c6d1ba2f631f2deb4e5f8d9e (diff)
arara (5mar20)
git-svn-id: svn://tug.org/texlive/trunk@54115 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r--Master/texmf-dist/scripts/arara/arara.jarbin15897061 -> 15897062 bytes
-rw-r--r--Master/texmf-dist/scripts/arara/rules/asymptote.yaml2
-rw-r--r--Master/texmf-dist/scripts/arara/rules/biber.yaml2
-rw-r--r--Master/texmf-dist/scripts/arara/rules/knitr.yaml2
-rw-r--r--Master/texmf-dist/scripts/arara/rules/metapost.yaml2
5 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf-dist/scripts/arara/arara.jar b/Master/texmf-dist/scripts/arara/arara.jar
index 9e2c046ad18..2a5f72715e2 100644
--- a/Master/texmf-dist/scripts/arara/arara.jar
+++ b/Master/texmf-dist/scripts/arara/arara.jar
Binary files differ
diff --git a/Master/texmf-dist/scripts/arara/rules/asymptote.yaml b/Master/texmf-dist/scripts/arara/rules/asymptote.yaml
index c58e7dd0e5e..7e56a0a7535 100644
--- a/Master/texmf-dist/scripts/arara/rules/asymptote.yaml
+++ b/Master/texmf-dist/scripts/arara/rules/asymptote.yaml
@@ -13,7 +13,7 @@ commands:
command: >
@{
return getCommand('asy', color, engine, twice,
- format, output, options, file);
+ format, output, options, reference);
}
arguments:
- identifier: color
diff --git a/Master/texmf-dist/scripts/arara/rules/biber.yaml b/Master/texmf-dist/scripts/arara/rules/biber.yaml
index 8cf9acb474d..5ca0498f15a 100644
--- a/Master/texmf-dist/scripts/arara/rules/biber.yaml
+++ b/Master/texmf-dist/scripts/arara/rules/biber.yaml
@@ -16,7 +16,7 @@ commands:
return getCommand('biber', '--tool', options);
}
else {
- return getCommand('biber', options, getBasename(file));
+ return getCommand('biber', options, getBasename(reference));
}
}
arguments:
diff --git a/Master/texmf-dist/scripts/arara/rules/knitr.yaml b/Master/texmf-dist/scripts/arara/rules/knitr.yaml
index da17289db2d..feb6b1847c8 100644
--- a/Master/texmf-dist/scripts/arara/rules/knitr.yaml
+++ b/Master/texmf-dist/scripts/arara/rules/knitr.yaml
@@ -19,7 +19,7 @@ commands:
elements.add('envir = ' + envir);
elements.add('encoding = ' + encoding);
return getCommand('Rscript', '-e',
- 'library(knitr); knit("' + file + '", ' +
+ 'library(knitr); knit("' + reference + '", ' +
'output = ' + isEmpty(output, 'NULL', '"' + output + '"') + ', ' +
String.join(', ', elements) + ')');
}
diff --git a/Master/texmf-dist/scripts/arara/rules/metapost.yaml b/Master/texmf-dist/scripts/arara/rules/metapost.yaml
index 390d08a1406..b72ff48b5c0 100644
--- a/Master/texmf-dist/scripts/arara/rules/metapost.yaml
+++ b/Master/texmf-dist/scripts/arara/rules/metapost.yaml
@@ -13,7 +13,7 @@ commands:
command: >
@{
return getCommand('mpost', interaction, numbersystem,
- options, file);
+ options, reference);
}
arguments:
- identifier: interaction