summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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