mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 15:44:36 +00:00
Empty Template for ticket #1
This commit is contained in:
parent
8337cad7ee
commit
40220512d3
1573 changed files with 141028 additions and 0 deletions
15
Templates/Empty/DeleteCachedDTSs.command
Normal file
15
Templates/Empty/DeleteCachedDTSs.command
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
cd "`dirname "$0"`"
|
||||
|
||||
for i in $(find . -type f \( -iname "*.dae" \))
|
||||
do
|
||||
len=$((${#i} - 4))
|
||||
file=${i:0:$len}.cached.dts
|
||||
if [ -e $file ]
|
||||
then
|
||||
echo "Removing ${file}"
|
||||
rm $file
|
||||
fi
|
||||
done
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue