12 lines
213 B
Bash
Executable file
12 lines
213 B
Bash
Executable file
#!/bin/bash
|
|
set -e -u
|
|
|
|
. ../../tools/log.sh
|
|
exec > >(tee --append "$LOGFILE") 2>&1
|
|
|
|
blockMesh
|
|
|
|
../../tools/run-openfoam.sh "$@"
|
|
. ../../tools/openfoam-remove-empty-dirs.sh && openfoam_remove_empty_dirs
|
|
|
|
close_log
|