summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Vlugter <pvlugter@gmail.com>2012-06-01 19:21:29 +1200
committerPeter Vlugter <pvlugter@gmail.com>2012-06-01 19:21:29 +1200
commited6daea665eccad2ab5394c0a5c36069aaf9a81f (patch)
tree115d8a664f7d0dc5fc29eca184595a103829e752
parent71006c07440af3d597e4f645af8af5df61472b09 (diff)
downloadscala-ed6daea665eccad2ab5394c0a5c36069aaf9a81f.tar.gz
scala-ed6daea665eccad2ab5394c0a5c36069aaf9a81f.tar.bz2
scala-ed6daea665eccad2ab5394c0a5c36069aaf9a81f.zip
More robust findScalaHome in bash scripts. See SI-5792
Allows multiple absolute or relative symlinks by jumping through the directories while following the links.
-rw-r--r--src/compiler/scala/tools/ant/templates/tool-unix.tmpl21
1 files changed, 8 insertions, 13 deletions
diff --git a/src/compiler/scala/tools/ant/templates/tool-unix.tmpl b/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
index 85bb5f2056..256b5088e9 100644
--- a/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
+++ b/src/compiler/scala/tools/ant/templates/tool-unix.tmpl
@@ -9,19 +9,14 @@
##############################################################################
findScalaHome () {
- # see SI-2092
- local SOURCE="${BASH_SOURCE[0]}"
- while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
- local bindir="$( dirname "$SOURCE" )"
- if [[ -d "$bindir"/.. ]]; then
- ( cd -P "$bindir"/.. && pwd )
- else
- # See SI-5792
- local dir=$(dirname "${BASH_SOURCE[0]}")
- local link=$(dirname "$(readlink "${BASH_SOURCE[0]}")")
- local path="$dir/$link/.."
- ( cd "$path" && pwd )
- fi
+ # see SI-2092 and SI-5792
+ local source="${BASH_SOURCE[0]}"
+ while [ -h "$source" ] ; do
+ local linked="$(readlink "$source")"
+ local dir="$( cd -P $(dirname "$source") && cd -P $(dirname "$linked") && pwd )"
+ source="$dir/$(basename "$linked")"
+ done
+ ( cd -P "$(dirname "$source")/.." && pwd )
}
execCommand () {
[[ -n $SCALA_RUNNER_DEBUG ]] && echo "" && for arg in "$@@"; do echo "$arg"; done && echo "";