STYLE: Quenching warnings for non-existing files from clean-up scripts

This commit is contained in:
Henrik Rusche 2014-06-07 11:49:02 +02:00
parent 9203c0219e
commit 71cb2446b7
3 changed files with 3 additions and 7 deletions

View file

@ -60,7 +60,6 @@ lagrangian/Allwmake
postProcessing/Allwmake
conversion/Allwmake
wmake libso autoMesh
wmake libso errorEstimation
fvAgglomerationMethods/Allwmake

View file

@ -8,8 +8,5 @@ cleanCase
rm -f 0/cellToRegion
rm -rf constant/polyMesh/boundary
if [ -d "VTK" ]
then
rm -r VTK
fi
rm -rf VTK

View file

@ -1,4 +1,4 @@
#!/bin/sh
( cd constant/polyMesh && rm -r boundary* blockMeshDict *Zones* faces* neighbour* owner* points* sets )
rm -r 0 0.* [1-9]* VTK log* processor*
( cd constant/polyMesh && rm -rf boundary* blockMeshDict *Zones* faces* neighbour* owner* points* sets )
rm -rf 0 0.* [1-9]* VTK log* processor*