mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
20 lines
272 B
Plaintext
20 lines
272 B
Plaintext
|
|
#!/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
|