diff options
author | Norbert Preining <norbert@preining.info> | 2022-06-29 03:00:54 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2022-06-29 03:00:54 +0000 |
commit | 1803d67dcb084b1d6b825dd2f1a39df83c11db02 (patch) | |
tree | 083814d64daa39afbd3ceea4804d903a2585077a /support/arara/scripts | |
parent | 2ef43af0215fc52966c9bbd8d5df6db6d6af224b (diff) |
CTAN sync 202206290300
Diffstat (limited to 'support/arara/scripts')
-rw-r--r-- | support/arara/scripts/rules/arara-rule-copy.yaml | 2 | ||||
-rw-r--r-- | support/arara/scripts/rules/arara-rule-move.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/support/arara/scripts/rules/arara-rule-copy.yaml b/support/arara/scripts/rules/arara-rule-copy.yaml index 4d67014b06..b4ff42ace2 100644 --- a/support/arara/scripts/rules/arara-rule-copy.yaml +++ b/support/arara/scripts/rules/arara-rule-copy.yaml @@ -24,7 +24,7 @@ commands: if (getOriginalReference().equals(f)) { throwError('I cannot overwrite the main file reference.'); } - return getCommand(prefix, reference, t); + return getCommand(prefix, reference, f); } arguments: - identifier: target diff --git a/support/arara/scripts/rules/arara-rule-move.yaml b/support/arara/scripts/rules/arara-rule-move.yaml index df9bf69e64..2594b220b0 100644 --- a/support/arara/scripts/rules/arara-rule-move.yaml +++ b/support/arara/scripts/rules/arara-rule-move.yaml @@ -27,7 +27,7 @@ commands: if (getOriginalReference().equals(f)) { throwError('I cannot overwrite the main file reference.'); } - return getCommand(prefix, reference, t); + return getCommand(prefix, reference, f); } arguments: - identifier: target |