mirror of
git://slackware.nl/current.git
synced 2025-01-07 05:25:35 +01:00
13 lines
393 B
Bash
13 lines
393 B
Bash
|
#!/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
|
||
|
|