summaryrefslogtreecommitdiff
path: root/support/arara/scripts/rules/makeglossaries.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/scripts/rules/makeglossaries.yaml')
-rw-r--r--support/arara/scripts/rules/makeglossaries.yaml10
1 files changed, 4 insertions, 6 deletions
diff --git a/support/arara/scripts/rules/makeglossaries.yaml b/support/arara/scripts/rules/makeglossaries.yaml
index 562af6d149..34c1c07002 100644
--- a/support/arara/scripts/rules/makeglossaries.yaml
+++ b/support/arara/scripts/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")));