Merge pull request #5163 from JensRantil/fix-issue-5026
`env-setup` fix for zsh <= 4.3.10
This commit is contained in:
commit
d7109d7811
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
# When run using source as directed, $0 gets set to bash, so we must use $BASH_SOURCE
|
||||
if [ -n "$BASH_SOURCE" ] ; then
|
||||
HACKING_DIR=`dirname $BASH_SOURCE`
|
||||
elif [ ${0:(-9)} = "env-setup" ]; then
|
||||
elif [ $(basename $0) = "env-setup" ]; then
|
||||
HACKING_DIR=`dirname $0`
|
||||
else
|
||||
HACKING_DIR="$PWD/hacking"
|
||||
|
|
Loading…
Reference in a new issue