Skip to content
Snippets Groups Projects
Commit be2a4319 authored by Mark Olesen's avatar Mark Olesen
Browse files

STYLE: rationalize tutorial CleanFunctions (related to issue #279)

- include cleanup of other postProcessing directories:
  * Ensight, EnSight, ensightWrite

- don't need to remove files that cleanSnappyFiles already removed:
  * 0/cellLevel 0/pointLevel

- bundle removal of constant/ items together:
  * constant/cellDecomposition constant/polyMesh constant/tetDualMesh
parent 9ab0406b
Branches
Tags
No related merge requests found
......@@ -97,29 +97,24 @@ cleanCase()
rm -rf surfaceSampling > /dev/null 2>&1
rm -rf cuttingPlane > /dev/null 2>&1
rm -rf system/machines > /dev/null 2>&1
rm -rf Ensight EnSight ensightWrite VTK > /dev/null 2>&1
# From mpirunDebug
rm -f gdbCommands mpirun.schema
cleanSnappyFiles
if [ -d constant/polyMesh ]
then
rm -rf constant/polyMesh > /dev/null 2>&1
fi
rm -f 0/cellDist > /dev/null 2>&1
if [ -d constant ]
then
(cd constant && \
rm -rf \
cellToRegion cellLevel* pointLevel* \
cellDecomposition cellToRegion cellLevel* pointLevel* \
polyMesh tetDualMesh \
> /dev/null 2>&1 \
)
fi
rm -rf constant/tetDualMesh > /dev/null 2>&1
rm -rf VTK > /dev/null 2>&1
rm -f 0/cellLevel 0/pointLevel 0/cellDist constant/cellDecomposition
if [ -e system/blockMeshDict.m4 ]
then
rm -f system/blockMeshDict > /dev/null 2>&1
......@@ -130,7 +125,7 @@ cleanCase()
removeCase()
{
echo "Removing ${1:-unknown} case"
rm -rf $1
[ "$#" -ge 1 ] && rm -rf "$1"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment