test: rename *.MAP to *.map

This commit is contained in:
Eric Wasylishen 2018-01-15 21:47:45 -07:00
parent c3183429fb
commit 5a90667738
40 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
set -x
for MAP in *.MAP; do
qbsp -leaktest "$MAP" || exit 1
for file in *.map; do
qbsp -leaktest "$file" || exit 1
done