STYLE: Quenching warnings for non-existing files from clean-up scripts
This commit is contained in:
parent
9203c0219e
commit
71cb2446b7
3 changed files with 3 additions and 7 deletions
|
@ -60,7 +60,6 @@ lagrangian/Allwmake
|
|||
postProcessing/Allwmake
|
||||
conversion/Allwmake
|
||||
|
||||
wmake libso autoMesh
|
||||
wmake libso errorEstimation
|
||||
|
||||
fvAgglomerationMethods/Allwmake
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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*
|
||||
|
|
Reference in a new issue