11 lines
219 B
Text
11 lines
219 B
Text
|
#!/bin/sh
|
||
|
cd ${0%/*} || exit 1 # Run from this directory
|
||
|
|
||
|
# Source tutorial clean functions
|
||
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
||
|
|
||
|
cleanCase
|
||
|
|
||
|
rm -fr constant/polyMesh/data.bp constant/polyMesh/boundary data.bp
|
||
|
|