summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-02-13 18:10:47 +0000
committerNick White <git@njw.name>2020-02-13 18:10:47 +0000
commit6d43d44449380aa25987906d2a3d9dd97c906700 (patch)
tree1ce73af8cd937063f3bcf24508280846a9b1b197
parent4268b6cd52e6345867eae3a2eb55959bb9afb8ab (diff)
Fix up testtraining more
-rwxr-xr-xtesttraining.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/testtraining.sh b/testtraining.sh
index 48a386a..64d39bd 100755
--- a/testtraining.sh
+++ b/testtraining.sh
@@ -12,7 +12,7 @@ find "$evaldir" -type f -name '*txt' | while read i; do
# skip generating box files files if there's a box or lstmf file already present
test -f "$d/$b.box" && continue
- test -f "$d/$b.lstmf" && continue
+ test -f "$d/${b}_lstmf.lstmf" && continue
python ~/bigboy/othertools/generate_line_box.py -i "$d/$b.png" -t "$i" > "$d/$b.box" || exit 1
done