blob: 99861dc629c36afde268f6dd0011d98fc61a3658 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|