summaryrefslogtreecommitdiff
path: root/support/arara/scripts/rules/arara-rule-dvipspdf.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/scripts/rules/arara-rule-dvipspdf.yaml')
-rw-r--r--support/arara/scripts/rules/arara-rule-dvipspdf.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/support/arara/scripts/rules/arara-rule-dvipspdf.yaml b/support/arara/scripts/rules/arara-rule-dvipspdf.yaml
index ed82fd037f..dd4e918107 100644
--- a/support/arara/scripts/rules/arara-rule-dvipspdf.yaml
+++ b/support/arara/scripts/rules/arara-rule-dvipspdf.yaml
@@ -12,14 +12,14 @@ commands:
- name: The DVIPS program
command: >
@{
- base = getBasename(reference.getName()).concat('.dvi');
- out = getBasename(reference.getName()).concat('.ps');
+ base = getBasename(reference.fileName).concat('.dvi');
+ out = getBasename(reference.fileName).concat('.ps');
return getCommand('dvips', base, '-o', out, options1);
}
- name: The PS2PDF program
command: >
@{
- base = getBasename(reference.getName()).concat('.ps');
+ base = getBasename(reference.fileName).concat('.ps');
out = getBasename(output[0]).concat('.pdf');
return getCommand('ps2pdf', options2, base, '-o', out);
}
@@ -27,7 +27,7 @@ arguments:
- identifier: output
flag: >
@{
- isEmpty(parameters.output, reference.getName(), parameters.output)
+ isEmpty(parameters.output, reference.fileName, parameters.output)
}
default: ''
- identifier: options1