summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r--Master/texmf-dist/scripts/arara/arara.jarbin5119284 -> 5119284 bytes
-rwxr-xr-xMaster/texmf-dist/scripts/arara/arara.sh8
-rw-r--r--Master/texmf-dist/scripts/arara/rules/indent.yaml2
-rw-r--r--Master/texmf-dist/scripts/arara/rules/texindy.yaml2
-rw-r--r--Master/texmf-dist/scripts/arara/rules/xindy.yaml2
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
index 62fc8b58642..03519399de2 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/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: