summaryrefslogtreecommitdiffstats
path: root/source/l/aspell-dict/build/increment-all-dict.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source/l/aspell-dict/build/increment-all-dict.sh')
-rwxr-xr-xsource/l/aspell-dict/build/increment-all-dict.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/l/aspell-dict/build/increment-all-dict.sh b/source/l/aspell-dict/build/increment-all-dict.sh
new file mode 100755
index 000000000..99861dc62
--- /dev/null
+++ b/source/l/aspell-dict/build/increment-all-dict.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+# A script to increment build numbers of all the dictionaries.
+#
+# Any that are newly added should not have a build file in
+# here (or it should contain "1"). The usual method is to run this
+# script and then remove the build files for any new driver versions.
+
+for DICTSRC in ../src/* ; do
+ DICTBASENAME=$(basename $DICTSRC | cut -f 1,2 -d -)
+ ./increment.sh $DICTBASENAME
+done
+