diff options
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r-- | Master/texmf-dist/scripts/arara/arara.jar | bin | 15897061 -> 15897062 bytes | |||
-rw-r--r-- | Master/texmf-dist/scripts/arara/rules/asymptote.yaml | 2 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/arara/rules/biber.yaml | 2 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/arara/rules/knitr.yaml | 2 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/arara/rules/metapost.yaml | 2 |
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 Binary files differindex 9e2c046ad18..2a5f72715e2 100644 --- a/Master/texmf-dist/scripts/arara/arara.jar +++ b/Master/texmf-dist/scripts/arara/arara.jar 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 |