summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-02-13 23:46:22 +0000
committerKarl Berry <karl@freefriends.org>2024-02-13 23:46:22 +0000
commitdd6284e2541cc9d43f10bb620ba4ce18e55b9f97 (patch)
treec136aa00017d43a7cf4f1caeee9d56d9a04ecae6 /Master/texmf-dist/scripts
parent8d1c7ee992124f0263c800c7296a60ac682f9435 (diff)
arara (14feb24)
git-svn-id: svn://tug.org/texlive/trunk@69831 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r--Master/texmf-dist/scripts/arara/arara.jarbin16711348 -> 16715492 bytes
-rw-r--r--Master/texmf-dist/scripts/arara/rules/arara-rule-rmdir.yaml25
2 files changed, 25 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/arara/arara.jar b/Master/texmf-dist/scripts/arara/arara.jar
index 1b3b1aef3bc..8dec9160f27 100644
--- a/Master/texmf-dist/scripts/arara/arara.jar
+++ b/Master/texmf-dist/scripts/arara/arara.jar
Binary files differ
diff --git a/Master/texmf-dist/scripts/arara/rules/arara-rule-rmdir.yaml b/Master/texmf-dist/scripts/arara/rules/arara-rule-rmdir.yaml
new file mode 100644
index 00000000000..04da08fe38f
--- /dev/null
+++ b/Master/texmf-dist/scripts/arara/rules/arara-rule-rmdir.yaml
@@ -0,0 +1,25 @@
+!config
+# Arara, the cool TeX automation tool
+# Copyright (c) 2024, Island of TeX
+# All rights reserved.
+#
+# This rule is part of arara.
+identifier: rmdir
+name: Remove subdirectory
+authors:
+- hackbaellchen
+- Island of TeX
+commands:
+- name: Remove subdirectory
+ command: >
+ @{
+ toFile(target[0]).removeDirectory();
+ return true;
+ }
+arguments:
+- identifier: target
+ flag: >
+ @{
+ return parameters.target;
+ }
+ required: true