ericw-tools/testmaps/quake_map_source/leaktest.sh

10 lines
102 B
Bash
Executable File

#!/bin/bash
set -x
for file in *.map; do
qbsp -leaktest -noverbose "$file" || exit 1
done
exit 0