Commit 2096c669 by Jens Rantil

`env-setup` fix for zsh <= 4.3.10

This fixes issue #5026. It used to work. The regression was
introduced in 2b3381de.
parent 27199dc2
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
# When run using source as directed, $0 gets set to bash, so we must use $BASH_SOURCE # When run using source as directed, $0 gets set to bash, so we must use $BASH_SOURCE
if [ -n "$BASH_SOURCE" ] ; then if [ -n "$BASH_SOURCE" ] ; then
HACKING_DIR=`dirname $BASH_SOURCE` HACKING_DIR=`dirname $BASH_SOURCE`
elif [ ${0:(-9)} = "env-setup" ]; then elif [ $(basename $0) = "env-setup" ]; then
HACKING_DIR=`dirname $0` HACKING_DIR=`dirname $0`
else else
HACKING_DIR="$PWD/hacking" HACKING_DIR="$PWD/hacking"
......
Markdown is supported
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