diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2013-06-12 07:46:30 -0700 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2013-06-12 07:46:30 -0700 |
commit | ef0fd4089fd2efd4ba8941de73ce6932e47e3a7e (patch) | |
tree | cb8e18d609dfaba21595e9f8ece251f2f2b28325 /priv/templates/simplenode.runner | |
parent | 6cd982c8975f22859719b8eede9d92e4363b19fd (diff) | |
parent | 505458eecb78f90e6c266cbaec9244e88d8c3f1e (diff) |
Merge pull request #96 from olgeni/pwd-symlink-fix
Use "pwd -P" to get the current physical path.
Diffstat (limited to 'priv/templates/simplenode.runner')
-rwxr-xr-x | priv/templates/simplenode.runner | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/templates/simplenode.runner b/priv/templates/simplenode.runner index 9835d92..c2ef258 100755 --- a/priv/templates/simplenode.runner +++ b/priv/templates/simplenode.runner @@ -15,7 +15,7 @@ fi # clear it so if we invoke other scripts, they run as ksh unset POSIX_SHELL -RUNNER_SCRIPT_DIR=$(cd ${0%/*} && pwd) +RUNNER_SCRIPT_DIR=$(cd ${0%/*} && pwd -P) CALLER_DIR=$PWD |