improving prep of byod files

This commit is contained in:
Eric House 2020-07-07 10:37:23 -07:00
parent a2335064da
commit 45e7e716b9
2 changed files with 7 additions and 1 deletions

7
xwords4/dawg/mkbyodbins.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
for INFO in $(ls */info.txt); do
DIR=$(dirname $INFO)
echo "*** processing $(basename $DIRNAME) ***"
(cd $DIR && make byodbins)
done

View file

@ -79,7 +79,6 @@ def writeMapFile(xlocToken, outfile):
face = tile[2]
match = sSingleCharMatch.match(face)
if match:
print('single char: {}'.format(match.group(1)))
printLetters( match.group(1), outfile )
continue
match = sSpecialsMatch.match(face)