Merge pull request #3322 from stoned/hacking-env-setup

Handle login shell bash processes hence match $0 with "*bash"
This commit is contained in:
Michael DeHaan
2013-06-23 10:00:56 -07:00

View File

@@ -7,7 +7,7 @@
# When run using source as directed, $0 gets set to bash, so we must use $BASH_SOURCE
case "$0" in
(bash)
(*bash)
HACKING_DIR=${BASH_SOURCE%/*};;
(*)
HACKING_DIR=${0%/*};;