diff options
author | Karl Berry <karl@freefriends.org> | 2018-07-14 21:27:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-07-14 21:27:24 +0000 |
commit | dc072067d34f630b6ad24b60fd64d2e11e3a3fa0 (patch) | |
tree | f982de8ed61e1a15ee07c48a557f0b01237bb588 /Master/texmf-dist/scripts/arara | |
parent | 827ff240303a6ecd8c6cb03696a990371f51fcd4 (diff) |
(13jul18)
git-svn-id: svn://tug.org/texlive/trunk@48201 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/arara')
-rw-r--r-- | Master/texmf-dist/scripts/arara/arara.jar | bin | 5119284 -> 5119284 bytes | |||
-rwxr-xr-x | Master/texmf-dist/scripts/arara/arara.sh | 8 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/arara/rules/indent.yaml | 2 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/arara/rules/texindy.yaml | 2 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/arara/rules/xindy.yaml | 2 |
5 files changed, 10 insertions, 4 deletions
diff --git a/Master/texmf-dist/scripts/arara/arara.jar b/Master/texmf-dist/scripts/arara/arara.jar Binary files differindex 62fc8b58642..03519399de2 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/arara.sh b/Master/texmf-dist/scripts/arara/arara.sh index e9a59c90b97..8f97643a72e 100755 --- a/Master/texmf-dist/scripts/arara/arara.sh +++ b/Master/texmf-dist/scripts/arara/arara.sh @@ -1,3 +1,9 @@ #!/bin/bash -jarpath=`kpsewhich --progname=arara --format=texmfscripts arara.jar` +kernel=`uname -s` +if test "${kernel#*CYGWIN}" != "$kernel" +then + jarpath=`cygpath -w $(kpsewhich --progname=arara --format=texmfscripts arara.jar)` +else + jarpath=`kpsewhich --progname=arara --format=texmfscripts arara.jar` +fi java -jar "$jarpath" "$@" diff --git a/Master/texmf-dist/scripts/arara/rules/indent.yaml b/Master/texmf-dist/scripts/arara/rules/indent.yaml index 8390aa672e8..50aadea0be7 100644 --- a/Master/texmf-dist/scripts/arara/rules/indent.yaml +++ b/Master/texmf-dist/scripts/arara/rules/indent.yaml @@ -13,7 +13,7 @@ commands: - name: The latexindent.pl script command: > @{ - return getCommand('latexindent', silent, trace, ttrace, screenlog, + return getCommand('latexindent', silent, trace, screenlog, settings, cruft, overwrite, output, file, modifylinebreaks, options, logfile); } diff --git a/Master/texmf-dist/scripts/arara/rules/texindy.yaml b/Master/texmf-dist/scripts/arara/rules/texindy.yaml index b0a9c93842e..d527e0292d2 100644 --- a/Master/texmf-dist/scripts/arara/rules/texindy.yaml +++ b/Master/texmf-dist/scripts/arara/rules/texindy.yaml @@ -17,7 +17,7 @@ commands: infile = base.concat('.').concat(input); outfile = [ '-o', base.concat('.').concat(output) ]; logfile = [ '-t', base.concat('.').concat(log) ]; - return getCommand('texindy', quiet, debug, markup, modules, + return getCommand('texindy', quiet, markup, modules, codepage, language, logfile, outfile, options, infile); } arguments: diff --git a/Master/texmf-dist/scripts/arara/rules/xindy.yaml b/Master/texmf-dist/scripts/arara/rules/xindy.yaml index a44dbbfd08c..6daf807cc86 100644 --- a/Master/texmf-dist/scripts/arara/rules/xindy.yaml +++ b/Master/texmf-dist/scripts/arara/rules/xindy.yaml @@ -17,7 +17,7 @@ commands: infile = base.concat('.').concat(input); outfile = [ '-o', base.concat('.').concat(output) ]; logfile = [ '-t', base.concat('.').concat(log) ]; - return getCommand('xindy', quiet, debug, markup, modules, + return getCommand('xindy', quiet, markup, modules, codepage, language, logfile, outfile, options, infile); } arguments: |