Skip to content
Snippets Groups Projects
Commit 96f2562e authored by Henry Weller's avatar Henry Weller
Browse files

OpenFOAM-dev/etc/bashrc: Use 'pwd -P' to handle relative paths and links

Resolves bug-report http://bugs.openfoam.org/view.php?id=2223
parent 8185f1d6
No related merge requests found
......@@ -43,7 +43,7 @@ export WM_PROJECT_VERSION=dev
# Please set to the appropriate path if the default is not correct.
#
[ $BASH_SOURCE ] && \
export FOAM_INST_DIR=${BASH_SOURCE%/*/*/*} || \
export FOAM_INST_DIR=$(cd ${BASH_SOURCE%/*/*/*} && pwd -P) || \
export FOAM_INST_DIR=$HOME/$WM_PROJECT
# export FOAM_INST_DIR=~$WM_PROJECT
# export FOAM_INST_DIR=/opt/$WM_PROJECT
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment