diff options
Diffstat (limited to 'Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml')
-rw-r--r-- | Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml b/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml index 562af6d149a..34c1c07002f 100644 --- a/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml +++ b/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml @@ -1,22 +1,20 @@ !config # Arara, the cool TeX automation tool -# Copyright (c) 2018, Paulo Roberto Massa Cereda +# Copyright (c) 2020, Island of TeX # All rights reserved. # # This rule is part of arara. identifier: makeglossaries name: MakeGlossaries authors: -- Marco Daniel -- Nicola Talbot -- Paulo Cereda +- Island of TeX commands: - name: The MakeGlossaries software command: > @{ if (isEmpty(clean)) { - return getCommand('makeglossaries', options, getBasename(file)); + return getCommand('makeglossaries', options, getBasename(reference)); } else { prefix = []; @@ -27,7 +25,7 @@ commands: prefix = [ 'cmd', '/c', 'del' ]; } - base = getBasename(file); + base = getBasename(reference); removals = []; removals.add(getCommand(prefix, base.concat(".glsdefs"))); |