Torque3D/Templates/Full PhysX/DeleteDSOs.command
2012-09-19 12:29:35 -04:00

20 lines
272 B
Bash

#!/bin/sh
cd "`dirname "$0"`"
for i in $(find . -type f \( -iname "*.cs" \))
do
file=${i}.dso
if [ -e $file ]
then
echo "Removing ${file}"
rm $file
fi
file=${i}.edso
if [ -e $file ]
then
echo "Removing ${file}"
rm $file
fi
done