summaryrefslogtreecommitdiff
path: root/support/arara/doc/rules/manual.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/doc/rules/manual.yaml')
-rw-r--r--support/arara/doc/rules/manual.yaml41
1 files changed, 0 insertions, 41 deletions
diff --git a/support/arara/doc/rules/manual.yaml b/support/arara/doc/rules/manual.yaml
deleted file mode 100644
index a419e0e779..0000000000
--- a/support/arara/doc/rules/manual.yaml
+++ /dev/null
@@ -1,41 +0,0 @@
-!config
-identifier: manual
-name: The arara manual
-authors:
-- Island of TeX
-commands:
-- name: The PDFLaTeX engine
- command: >
- @{
- return getCommand('pdflatex', reference);
- }
-- name: The PDFLaTeX engine
- command: >
- @{
- return getCommand('pdflatex', reference);
- }
-- name: File cleanup
- command: >
- @{
- matches = listFilesByExtensions('.',
- [ 'aux' ], true);
- prefix = [];
- if (isUnix()) {
- prefix = [ 'rm', '-f' ];
- }
- else {
- prefix = [ 'cmd', '/c', 'del' ];
- }
- removals = [];
- extensions = [ 'listing', 'log', 'toc',
- 'out', 'synctex.gz' ];
- foreach (extension : extensions) {
- removals.add(getCommand(prefix, getBasename(reference)
- .concat('.').concat(extension)));
- }
- foreach (match : matches) {
- removals.add(getCommand(prefix, match.getCanonicalPath()));
- }
- return removals;
- }
-arguments: []